Dropbox .NET SDK
Show / Hide Table of Contents

Class MemberSelectorError

The member selector error object

Inheritance
object
MemberSelectorError
MemberSelectorError.UserNotFound
MemberSelectorError.UserNotInTeam
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 MemberSelectorError

Constructors

View Source

MemberSelectorError()

Initializes a new instance of the MemberSelectorError class.

Declaration
public MemberSelectorError()

Properties

View Source

AsUserNotFound

Gets this instance as a UserNotFound, or null.

Declaration
public MemberSelectorError.UserNotFound AsUserNotFound { get; }
Property Value
Type Description
MemberSelectorError.UserNotFound
View Source

AsUserNotInTeam

Gets this instance as a UserNotInTeam, or null.

Declaration
public MemberSelectorError.UserNotInTeam AsUserNotInTeam { get; }
Property Value
Type Description
MemberSelectorError.UserNotInTeam
View Source

IsUserNotFound

Gets a value indicating whether this instance is UserNotFound

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

IsUserNotInTeam

Gets a value indicating whether this instance is UserNotInTeam

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