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
System.Object
PollEmptyResult
PollEmptyResult.Complete
PollEmptyResult.InProgress
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Async
Assembly: Dropbox.Api.dll
Syntax
public class PollEmptyResult

Constructors

| Improve this Doc View Source

PollEmptyResult()

Initializes a new instance of the PollEmptyResult class.

Declaration
public PollEmptyResult()

Properties

| Improve this Doc View Source

AsComplete

Gets this instance as a Complete, or null.

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

AsInProgress

Gets this instance as a InProgress, or null.

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

IsComplete

Gets a value indicating whether this instance is Complete

Declaration
public bool IsComplete { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IsInProgress

Gets a value indicating whether this instance is InProgress

Declaration
public bool IsInProgress { get; }
Property Value
Type Description
System.Boolean
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • PollEmptyResult()
  • Properties
    • AsComplete
    • AsInProgress
    • IsComplete
    • IsInProgress
Back to top Generated by DocFX