Dropbox .NET SDK
Show / Hide Table of Contents

Class PollError

Error returned by methods for polling the status of asynchronous job.

Inheritance
object
PollError
PollError.InternalError
PollError.InvalidAsyncJobId
PollError.Other
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Async
Assembly: Dropbox.Api.dll
Syntax
public class PollError

Constructors

View Source

PollError()

Initializes a new instance of the PollError class.

Declaration
public PollError()

Properties

View Source

AsInternalError

Gets this instance as a InternalError, or null.

Declaration
public PollError.InternalError AsInternalError { get; }
Property Value
Type Description
PollError.InternalError
View Source

AsInvalidAsyncJobId

Gets this instance as a InvalidAsyncJobId, or null.

Declaration
public PollError.InvalidAsyncJobId AsInvalidAsyncJobId { get; }
Property Value
Type Description
PollError.InvalidAsyncJobId
View Source

AsOther

Gets this instance as a Other, or null.

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

IsInternalError

Gets a value indicating whether this instance is InternalError

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

IsInvalidAsyncJobId

Gets a value indicating whether this instance is InvalidAsyncJobId

Declaration
public bool IsInvalidAsyncJobId { 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
In this article
Back to top Dropbox .NET SDK