Dropbox .NET SDK
Show / Hide Table of Contents

Class 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.

Inheritance
object
LaunchEmptyResult
LaunchEmptyResult.AsyncJobId
LaunchEmptyResult.Complete
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 LaunchEmptyResult

Constructors

View Source

LaunchEmptyResult()

Initializes a new instance of the LaunchEmptyResult class.

Declaration
public LaunchEmptyResult()

Properties

View Source

AsAsyncJobId

Gets this instance as a AsyncJobId, or null.

Declaration
public LaunchEmptyResult.AsyncJobId AsAsyncJobId { get; }
Property Value
Type Description
LaunchEmptyResult.AsyncJobId
View Source

AsComplete

Gets this instance as a Complete, or null.

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

IsAsyncJobId

Gets a value indicating whether this instance is AsyncJobId

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

IsComplete

Gets a value indicating whether this instance is Complete

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