Dropbox .NET SDK
Show / Hide Table of Contents

Class MemberAddResult

Describes the result of attempting to add a single user to the team. 'success' is the only value indicating that a user was indeed added to the team - the other values explain the type of failure that occurred, and include the email of the user for which the operation has failed.

Inheritance
object
MemberAddResult
MemberAddResult.DuplicateExternalMemberId
MemberAddResult.DuplicateMemberPersistentId
MemberAddResult.FreeTeamMemberLimitReached
MemberAddResult.PersistentIdDisabled
MemberAddResult.Success
MemberAddResult.TeamLicenseLimit
MemberAddResult.UserAlreadyOnTeam
MemberAddResult.UserAlreadyPaired
MemberAddResult.UserCreationFailed
MemberAddResult.UserMigrationFailed
MemberAddResult.UserOnAnotherTeam
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 MemberAddResult

Constructors

View Source

MemberAddResult()

Initializes a new instance of the MemberAddResult class.

Declaration
public MemberAddResult()

Properties

View Source

AsDuplicateExternalMemberId

Gets this instance as a DuplicateExternalMemberId, or null.

Declaration
public MemberAddResult.DuplicateExternalMemberId AsDuplicateExternalMemberId { get; }
Property Value
Type Description
MemberAddResult.DuplicateExternalMemberId
View Source

AsDuplicateMemberPersistentId

Gets this instance as a DuplicateMemberPersistentId, or null.

Declaration
public MemberAddResult.DuplicateMemberPersistentId AsDuplicateMemberPersistentId { get; }
Property Value
Type Description
MemberAddResult.DuplicateMemberPersistentId
View Source

AsFreeTeamMemberLimitReached

Gets this instance as a FreeTeamMemberLimitReached, or null.

Declaration
public MemberAddResult.FreeTeamMemberLimitReached AsFreeTeamMemberLimitReached { get; }
Property Value
Type Description
MemberAddResult.FreeTeamMemberLimitReached
View Source

AsPersistentIdDisabled

Gets this instance as a PersistentIdDisabled, or null.

Declaration
public MemberAddResult.PersistentIdDisabled AsPersistentIdDisabled { get; }
Property Value
Type Description
MemberAddResult.PersistentIdDisabled
View Source

AsSuccess

Gets this instance as a Success, or null.

Declaration
public MemberAddResult.Success AsSuccess { get; }
Property Value
Type Description
MemberAddResult.Success
View Source

AsTeamLicenseLimit

Gets this instance as a TeamLicenseLimit, or null.

Declaration
public MemberAddResult.TeamLicenseLimit AsTeamLicenseLimit { get; }
Property Value
Type Description
MemberAddResult.TeamLicenseLimit
View Source

AsUserAlreadyOnTeam

Gets this instance as a UserAlreadyOnTeam, or null.

Declaration
public MemberAddResult.UserAlreadyOnTeam AsUserAlreadyOnTeam { get; }
Property Value
Type Description
MemberAddResult.UserAlreadyOnTeam
View Source

AsUserAlreadyPaired

Gets this instance as a UserAlreadyPaired, or null.

Declaration
public MemberAddResult.UserAlreadyPaired AsUserAlreadyPaired { get; }
Property Value
Type Description
MemberAddResult.UserAlreadyPaired
View Source

AsUserCreationFailed

Gets this instance as a UserCreationFailed, or null.

Declaration
public MemberAddResult.UserCreationFailed AsUserCreationFailed { get; }
Property Value
Type Description
MemberAddResult.UserCreationFailed
View Source

AsUserMigrationFailed

Gets this instance as a UserMigrationFailed, or null.

Declaration
public MemberAddResult.UserMigrationFailed AsUserMigrationFailed { get; }
Property Value
Type Description
MemberAddResult.UserMigrationFailed
View Source

AsUserOnAnotherTeam

Gets this instance as a UserOnAnotherTeam, or null.

Declaration
public MemberAddResult.UserOnAnotherTeam AsUserOnAnotherTeam { get; }
Property Value
Type Description
MemberAddResult.UserOnAnotherTeam
View Source

IsDuplicateExternalMemberId

Gets a value indicating whether this instance is DuplicateExternalMemberId

Declaration
public bool IsDuplicateExternalMemberId { get; }
Property Value
Type Description
bool
View Source

IsDuplicateMemberPersistentId

Gets a value indicating whether this instance is DuplicateMemberPersistentId

Declaration
public bool IsDuplicateMemberPersistentId { get; }
Property Value
Type Description
bool
View Source

IsFreeTeamMemberLimitReached

Gets a value indicating whether this instance is FreeTeamMemberLimitReached

Declaration
public bool IsFreeTeamMemberLimitReached { get; }
Property Value
Type Description
bool
View Source

IsPersistentIdDisabled

Gets a value indicating whether this instance is PersistentIdDisabled

Declaration
public bool IsPersistentIdDisabled { get; }
Property Value
Type Description
bool
View Source

IsSuccess

Gets a value indicating whether this instance is Success

Declaration
public bool IsSuccess { get; }
Property Value
Type Description
bool
View Source

IsTeamLicenseLimit

Gets a value indicating whether this instance is TeamLicenseLimit

Declaration
public bool IsTeamLicenseLimit { get; }
Property Value
Type Description
bool
View Source

IsUserAlreadyOnTeam

Gets a value indicating whether this instance is UserAlreadyOnTeam

Declaration
public bool IsUserAlreadyOnTeam { get; }
Property Value
Type Description
bool
View Source

IsUserAlreadyPaired

Gets a value indicating whether this instance is UserAlreadyPaired

Declaration
public bool IsUserAlreadyPaired { get; }
Property Value
Type Description
bool
View Source

IsUserCreationFailed

Gets a value indicating whether this instance is UserCreationFailed

Declaration
public bool IsUserCreationFailed { get; }
Property Value
Type Description
bool
View Source

IsUserMigrationFailed

Gets a value indicating whether this instance is UserMigrationFailed

Declaration
public bool IsUserMigrationFailed { get; }
Property Value
Type Description
bool
View Source

IsUserOnAnotherTeam

Gets a value indicating whether this instance is UserOnAnotherTeam

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