Dropbox .NET SDK
Show / Hide Table of Contents

Class UsersSelectorArg

Argument for selecting a list of users, either by team_member_ids, external_ids or emails.

Inheritance
object
UsersSelectorArg
UsersSelectorArg.Emails
UsersSelectorArg.ExternalIds
UsersSelectorArg.TeamMemberIds
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 UsersSelectorArg

Constructors

View Source

UsersSelectorArg()

Initializes a new instance of the UsersSelectorArg class.

Declaration
public UsersSelectorArg()

Properties

View Source

AsEmails

Gets this instance as a Emails, or null.

Declaration
public UsersSelectorArg.Emails AsEmails { get; }
Property Value
Type Description
UsersSelectorArg.Emails
View Source

AsExternalIds

Gets this instance as a ExternalIds, or null.

Declaration
public UsersSelectorArg.ExternalIds AsExternalIds { get; }
Property Value
Type Description
UsersSelectorArg.ExternalIds
View Source

AsTeamMemberIds

Gets this instance as a TeamMemberIds, or null.

Declaration
public UsersSelectorArg.TeamMemberIds AsTeamMemberIds { get; }
Property Value
Type Description
UsersSelectorArg.TeamMemberIds
View Source

IsEmails

Gets a value indicating whether this instance is Emails

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

IsExternalIds

Gets a value indicating whether this instance is ExternalIds

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

IsTeamMemberIds

Gets a value indicating whether this instance is TeamMemberIds

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