Dropbox .NET SDK
Show / Hide Table of Contents

Class TeamMemberStatus

The user's status as a member of a specific team.

Inheritance
object
TeamMemberStatus
TeamMemberStatus.Active
TeamMemberStatus.Invited
TeamMemberStatus.Removed
TeamMemberStatus.Suspended
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 TeamMemberStatus

Constructors

View Source

TeamMemberStatus()

Initializes a new instance of the TeamMemberStatus class.

Declaration
public TeamMemberStatus()

Properties

View Source

AsActive

Gets this instance as a Active, or null.

Declaration
public TeamMemberStatus.Active AsActive { get; }
Property Value
Type Description
TeamMemberStatus.Active
View Source

AsInvited

Gets this instance as a Invited, or null.

Declaration
public TeamMemberStatus.Invited AsInvited { get; }
Property Value
Type Description
TeamMemberStatus.Invited
View Source

AsRemoved

Gets this instance as a Removed, or null.

Declaration
public TeamMemberStatus.Removed AsRemoved { get; }
Property Value
Type Description
TeamMemberStatus.Removed
View Source

AsSuspended

Gets this instance as a Suspended, or null.

Declaration
public TeamMemberStatus.Suspended AsSuspended { get; }
Property Value
Type Description
TeamMemberStatus.Suspended
View Source

IsActive

Gets a value indicating whether this instance is Active

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

IsInvited

Gets a value indicating whether this instance is Invited

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

IsRemoved

Gets a value indicating whether this instance is Removed

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

IsSuspended

Gets a value indicating whether this instance is Suspended

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