Dropbox .NET SDK
Show / Hide Table of Contents

Class PollEmptyResult

Result returned by methods that poll for the status of an asynchronous job. Upon completion of the job, no additional information is returned.

Inheritance
object
PollEmptyResult
PollEmptyResult.Complete
PollEmptyResult.InProgress
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 PollEmptyResult

Constructors

View Source

PollEmptyResult()

Initializes a new instance of the PollEmptyResult class.

Declaration
public PollEmptyResult()

Properties

View Source

AsComplete

Gets this instance as a Complete, or null.

Declaration
public PollEmptyResult.Complete AsComplete { get; }
Property Value
Type Description
PollEmptyResult.Complete
View Source

AsInProgress

Gets this instance as a InProgress, or null.

Declaration
public PollEmptyResult.InProgress AsInProgress { get; }
Property Value
Type Description
PollEmptyResult.InProgress
View Source

IsComplete

Gets a value indicating whether this instance is Complete

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

IsInProgress

Gets a value indicating whether this instance is InProgress

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