Dropbox .NET SDK
Show / Hide Table of Contents

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

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

Constructors

View Source

LaunchResultBase()

Initializes a new instance of the LaunchResultBase class.

Declaration
public LaunchResultBase()

Properties

View Source

AsAsyncJobId

Gets this instance as a AsyncJobId, or null.

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

IsAsyncJobId

Gets a value indicating whether this instance is AsyncJobId

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