Show / Hide Table of Contents

Namespace Dropbox.Api.Async

Classes

LaunchEmptyResult

Result returned by methods that may either launch an asynchronous job or complete synchronously. Upon synchronous completion of the job, no additional information is returned.

LaunchEmptyResult.AsyncJobId

This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job.

LaunchEmptyResult.Complete

The job finished synchronously and successfully.

LaunchResultBase

Result returned by methods that launch an asynchronous job.

A method who may either launch an asynchronous job, or complete the request synchronously, can use this union by extending it, and adding a 'complete' field with the type of the synchronous response.

See LaunchEmptyResult for an example.

LaunchResultBase.AsyncJobId

This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job.

PollArg

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

PollEmptyResult

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

PollEmptyResult.Complete

The asynchronous job has completed successfully.

PollEmptyResult.InProgress

The asynchronous job is still in progress.

PollError

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

PollError.InternalError

Something went wrong with the job on Dropbox's end. You'll need to verify that the action you were taking succeeded, and if not, try again. This should happen very rarely.

PollError.InvalidAsyncJobId

The job ID is invalid.

PollError.Other

The other object

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.

PollResultBase.InProgress

The asynchronous job is still in progress.

In This Article
  • Classes
Back to top Generated by DocFX