Class ExcludedUsersListResult
Excluded users list result.
Inheritance
Inherited Members
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class ExcludedUsersListResult
Constructors
| Improve this Doc View SourceExcludedUsersListResult(IEnumerable<MemberProfile>, Boolean, String)
Initializes a new instance of the ExcludedUsersListResult class.
Declaration
public ExcludedUsersListResult(IEnumerable<MemberProfile> users, bool hasMore, string cursor = null)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<MemberProfile> | users | The users |
System.Boolean | hasMore | Is true if there are additional excluded users that have not been returned yet. An additional call to MemberSpaceLimitsExcludedUsersListContinueAsync(ExcludedUsersListContinueArg) can retrieve them. |
System.String | cursor | Pass the cursor into MemberSpaceLimitsExcludedUsersListContinueAsync(ExcludedUsersListContinueArg) to obtain additional excluded users. |
Properties
| Improve this Doc View SourceCursor
Pass the cursor into MemberSpaceLimitsExcludedUsersListContinueAsync(ExcludedUsersListContinueArg) to obtain additional excluded users.
Declaration
public string Cursor { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
HasMore
Is true if there are additional excluded users that have not been returned yet. An additional call to MemberSpaceLimitsExcludedUsersListContinueAsync(ExcludedUsersListContinueArg) can retrieve them.
Declaration
public bool HasMore { get; protected set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Users
Gets the users of the excluded users list result
Declaration
public IList<MemberProfile> Users { get; protected set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<MemberProfile> |