Dropbox .NET SDK
Show / Hide Table of Contents

Class UserSelectorArg

Argument for selecting a single user, either by team_member_id, external_id or email.

Inheritance
object
UserSelectorArg
UserSelectorArg.Email
UserSelectorArg.ExternalId
UserSelectorArg.TeamMemberId
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 UserSelectorArg

Constructors

View Source

UserSelectorArg()

Initializes a new instance of the UserSelectorArg class.

Declaration
public UserSelectorArg()

Properties

View Source

AsEmail

Gets this instance as a Email, or null.

Declaration
public UserSelectorArg.Email AsEmail { get; }
Property Value
Type Description
UserSelectorArg.Email
View Source

AsExternalId

Gets this instance as a ExternalId, or null.

Declaration
public UserSelectorArg.ExternalId AsExternalId { get; }
Property Value
Type Description
UserSelectorArg.ExternalId
View Source

AsTeamMemberId

Gets this instance as a TeamMemberId, or null.

Declaration
public UserSelectorArg.TeamMemberId AsTeamMemberId { get; }
Property Value
Type Description
UserSelectorArg.TeamMemberId
View Source

IsEmail

Gets a value indicating whether this instance is Email

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

IsExternalId

Gets a value indicating whether this instance is ExternalId

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

IsTeamMemberId

Gets a value indicating whether this instance is TeamMemberId

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