Dropbox .NET SDK
Show / Hide Table of Contents

Class ListMembersAppsResult

Information returned by LinkedAppsListMembersLinkedAppsAsync(ListMembersAppsArg).

Inheritance
object
ListMembersAppsResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class ListMembersAppsResult

Constructors

View Source

ListMembersAppsResult(IEnumerable<MemberLinkedApps>, bool, string)

Initializes a new instance of the ListMembersAppsResult class.

Declaration
public ListMembersAppsResult(IEnumerable<MemberLinkedApps> apps, bool hasMore, string cursor = null)
Parameters
Type Name Description
IEnumerable<MemberLinkedApps> apps

The linked applications of each member of the team.

bool hasMore

If true, then there are more apps available. Pass the cursor to LinkedAppsListMembersLinkedAppsAsync(ListMembersAppsArg) to retrieve the rest.

string cursor

Pass the cursor into LinkedAppsListMembersLinkedAppsAsync(ListMembersAppsArg) to receive the next sub list of team's applications.

Properties

View Source

Apps

The linked applications of each member of the team.

Declaration
public IList<MemberLinkedApps> Apps { get; protected set; }
Property Value
Type Description
IList<MemberLinkedApps>
View Source

Cursor

Pass the cursor into LinkedAppsListMembersLinkedAppsAsync(ListMembersAppsArg) to receive the next sub list of team's applications.

Declaration
public string Cursor { get; protected set; }
Property Value
Type Description
string
View Source

HasMore

If true, then there are more apps available. Pass the cursor to LinkedAppsListMembersLinkedAppsAsync(ListMembersAppsArg) to retrieve the rest.

Declaration
public bool HasMore { get; protected set; }
Property Value
Type Description
bool
  • View Source
In this article
Back to top Dropbox .NET SDK