Dropbox .NET SDK
Show / Hide Table of Contents

Class JobError

Error occurred while performing an asynchronous job from UnshareFolderAsync(UnshareFolderArg) or RemoveFolderMemberAsync(RemoveFolderMemberArg).

Inheritance
object
JobError
JobError.Other
JobError.RelinquishFolderMembershipError
JobError.RemoveFolderMemberError
JobError.UnshareFolderError
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class JobError

Constructors

View Source

JobError()

Initializes a new instance of the JobError class.

Declaration
public JobError()

Properties

View Source

AsOther

Gets this instance as a Other, or null.

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

AsRelinquishFolderMembershipError

Gets this instance as a RelinquishFolderMembershipError, or null.

Declaration
public JobError.RelinquishFolderMembershipError AsRelinquishFolderMembershipError { get; }
Property Value
Type Description
JobError.RelinquishFolderMembershipError
View Source

AsRemoveFolderMemberError

Gets this instance as a RemoveFolderMemberError, or null.

Declaration
public JobError.RemoveFolderMemberError AsRemoveFolderMemberError { get; }
Property Value
Type Description
JobError.RemoveFolderMemberError
View Source

AsUnshareFolderError

Gets this instance as a UnshareFolderError, or null.

Declaration
public JobError.UnshareFolderError AsUnshareFolderError { get; }
Property Value
Type Description
JobError.UnshareFolderError
View Source

IsOther

Gets a value indicating whether this instance is Other

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

IsRelinquishFolderMembershipError

Gets a value indicating whether this instance is RelinquishFolderMembershipError

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

IsRemoveFolderMemberError

Gets a value indicating whether this instance is RemoveFolderMemberError

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

IsUnshareFolderError

Gets a value indicating whether this instance is UnshareFolderError

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