Dropbox .NET SDK
Show / Hide Table of Contents

Class GroupDeleteError

The group delete error object

Inheritance
object
GroupDeleteError
GroupDeleteError.GroupAlreadyDeleted
GroupDeleteError.GroupNotFound
GroupDeleteError.Other
GroupDeleteError.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 GroupDeleteError

Constructors

View Source

GroupDeleteError()

Initializes a new instance of the GroupDeleteError class.

Declaration
public GroupDeleteError()

Properties

View Source

AsGroupAlreadyDeleted

Gets this instance as a GroupAlreadyDeleted, or null.

Declaration
public GroupDeleteError.GroupAlreadyDeleted AsGroupAlreadyDeleted { get; }
Property Value
Type Description
GroupDeleteError.GroupAlreadyDeleted
View Source

AsGroupNotFound

Gets this instance as a GroupNotFound, or null.

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

AsOther

Gets this instance as a Other, or null.

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

AsSystemManagedGroupDisallowed

Gets this instance as a SystemManagedGroupDisallowed, or null.

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

IsGroupAlreadyDeleted

Gets a value indicating whether this instance is GroupAlreadyDeleted

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

IsGroupNotFound

Gets a value indicating whether this instance is GroupNotFound

Declaration
public bool IsGroupNotFound { 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