Dropbox .NET SDK
Show / Hide Table of Contents

Class ExcludedUsersListResult

Excluded users list result.

Inheritance
object
ExcludedUsersListResult
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 ExcludedUsersListResult

Constructors

View Source

ExcludedUsersListResult(IEnumerable<MemberProfile>, bool, string)

Initializes a new instance of the ExcludedUsersListResult class.

Declaration
public ExcludedUsersListResult(IEnumerable<MemberProfile> users, bool hasMore, string cursor = null)
Parameters
Type Name Description
IEnumerable<MemberProfile> users

The users

bool hasMore

Is true if there are additional excluded users that have not been returned yet. An additional call to MemberSpaceLimitsExcludedUsersListContinueAsync(ExcludedUsersListContinueArg) can retrieve them.

string cursor

Pass the cursor into MemberSpaceLimitsExcludedUsersListContinueAsync(ExcludedUsersListContinueArg) to obtain additional excluded users.

Properties

View Source

Cursor

Pass the cursor into MemberSpaceLimitsExcludedUsersListContinueAsync(ExcludedUsersListContinueArg) to obtain additional excluded users.

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

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
bool
View Source

Users

Gets the users of the excluded users list result

Declaration
public IList<MemberProfile> Users { get; protected set; }
Property Value
Type Description
IList<MemberProfile>
  • View Source
In this article
Back to top Dropbox .NET SDK