Dropbox .NET SDK
Show / Hide Table of Contents

Class GetOcrAsyncCheckResult

Result type for EventBus async check - must end in "CheckResult"

Inheritance
object
GetOcrAsyncCheckResult
GetOcrAsyncCheckResult.Complete
GetOcrAsyncCheckResult.Failed
GetOcrAsyncCheckResult.InProgress
GetOcrAsyncCheckResult.Other
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Riviera
Assembly: Dropbox.Api.dll
Syntax
public class GetOcrAsyncCheckResult

Constructors

View Source

GetOcrAsyncCheckResult()

Initializes a new instance of the GetOcrAsyncCheckResult class.

Declaration
public GetOcrAsyncCheckResult()

Properties

View Source

AsComplete

Gets this instance as a Complete, or null.

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

AsFailed

Gets this instance as a Failed, or null.

Declaration
public GetOcrAsyncCheckResult.Failed AsFailed { get; }
Property Value
Type Description
GetOcrAsyncCheckResult.Failed
View Source

AsInProgress

Gets this instance as a InProgress, or null.

Declaration
public GetOcrAsyncCheckResult.InProgress AsInProgress { get; }
Property Value
Type Description
GetOcrAsyncCheckResult.InProgress
View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public GetOcrAsyncCheckResult.Other AsOther { get; }
Property Value
Type Description
GetOcrAsyncCheckResult.Other
View Source

IsComplete

Gets a value indicating whether this instance is Complete

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

IsFailed

Gets a value indicating whether this instance is Failed

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

IsInProgress

Gets a value indicating whether this instance is InProgress

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

IsOther

Gets a value indicating whether this instance is Other

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