Dropbox .NET SDK
Show / Hide Table of Contents

Class GroupMemberSelectorError

Error that can be raised when GroupMemberSelector is used, and the user is required to be a member of the specified group.

Inheritance
object
GroupMemberSelectorError
GroupMemberSelectorError.GroupNotFound
GroupMemberSelectorError.MemberNotInGroup
GroupMemberSelectorError.Other
GroupMemberSelectorError.SystemManagedGroupDisallowed
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 GroupMemberSelectorError

Constructors

View Source

GroupMemberSelectorError()

Initializes a new instance of the GroupMemberSelectorError class.

Declaration
public GroupMemberSelectorError()

Properties

View Source

AsGroupNotFound

Gets this instance as a GroupNotFound, or null.

Declaration
public GroupMemberSelectorError.GroupNotFound AsGroupNotFound { get; }
Property Value
Type Description
GroupMemberSelectorError.GroupNotFound
View Source

AsMemberNotInGroup

Gets this instance as a MemberNotInGroup, or null.

Declaration
public GroupMemberSelectorError.MemberNotInGroup AsMemberNotInGroup { get; }
Property Value
Type Description
GroupMemberSelectorError.MemberNotInGroup
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public GroupMemberSelectorError.Other AsOther { get; }
Property Value
Type Description
GroupMemberSelectorError.Other
View Source

AsSystemManagedGroupDisallowed

Gets this instance as a SystemManagedGroupDisallowed, or null.

Declaration
public GroupMemberSelectorError.SystemManagedGroupDisallowed AsSystemManagedGroupDisallowed { get; }
Property Value
Type Description
GroupMemberSelectorError.SystemManagedGroupDisallowed
View Source

IsGroupNotFound

Gets a value indicating whether this instance is GroupNotFound

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

IsMemberNotInGroup

Gets a value indicating whether this instance is MemberNotInGroup

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

IsOther

Gets a value indicating whether this instance is Other

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

IsSystemManagedGroupDisallowed

Gets a value indicating whether this instance is SystemManagedGroupDisallowed

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