Dropbox .NET SDK
Show / Hide Table of Contents

Class PollArg

Arguments for methods that poll the status of an asynchronous job.

Inheritance
object
PollArg
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 PollArg

Constructors

View Source

PollArg(string)

Initializes a new instance of the PollArg class.

Declaration
public PollArg(string asyncJobId)
Parameters
Type Name Description
string asyncJobId

Id of the asynchronous job. This is the value of a response returned from the method that launched the job.

Properties

View Source

AsyncJobId

Id of the asynchronous job. This is the value of a response returned from the method that launched the job.

Declaration
public string AsyncJobId { get; protected set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Dropbox .NET SDK