Dropbox .NET SDK
Show / Hide Table of Contents

Class PollResultBase

Result returned by methods that poll for the status of an asynchronous job. Unions that extend this union should add a 'complete' field with a type of the information returned upon job completion. See PollEmptyResult for an example

Inheritance
object
PollResultBase
PollResultBase.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 PollResultBase

Constructors

View Source

PollResultBase()

Initializes a new instance of the PollResultBase class.

Declaration
public PollResultBase()

Properties

View Source

AsInProgress

Gets this instance as a InProgress, or null.

Declaration
public PollResultBase.InProgress AsInProgress { get; }
Property Value
Type Description
PollResultBase.InProgress
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