Dropbox .NET SDK
Show / Hide Table of Contents

Class TextExtractionApiV2Error

Reason a text extraction job failed. Returned in the `failed` variant of `GetTextAsyncCheckResult`. This is a semantic error union: the HTTP status of the poll request itself is unaffected (a poll that surfaces a failed job is still a normal successful poll response). Callers should branch on the variant.

Inheritance
object
TextExtractionApiV2Error
TextExtractionApiV2Error.ConversionFailureError
TextExtractionApiV2Error.IsAFolderError
TextExtractionApiV2Error.LimitExceededError
TextExtractionApiV2Error.LinkDownloadDisabledError
TextExtractionApiV2Error.NotFoundError
TextExtractionApiV2Error.Other
TextExtractionApiV2Error.ServerError
TextExtractionApiV2Error.SharedLinkPasswordProtected
TextExtractionApiV2Error.UnsupportedFormatError
TextExtractionApiV2Error.UserError
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 TextExtractionApiV2Error

Constructors

View Source

TextExtractionApiV2Error()

Initializes a new instance of the TextExtractionApiV2Error class.

Declaration
public TextExtractionApiV2Error()

Properties

View Source

AsConversionFailureError

Gets this instance as a ConversionFailureError, or null.

Declaration
public TextExtractionApiV2Error.ConversionFailureError AsConversionFailureError { get; }
Property Value
Type Description
TextExtractionApiV2Error.ConversionFailureError
View Source

AsIsAFolderError

Gets this instance as a IsAFolderError, or null.

Declaration
public TextExtractionApiV2Error.IsAFolderError AsIsAFolderError { get; }
Property Value
Type Description
TextExtractionApiV2Error.IsAFolderError
View Source

AsLimitExceededError

Gets this instance as a LimitExceededError, or null.

Declaration
public TextExtractionApiV2Error.LimitExceededError AsLimitExceededError { get; }
Property Value
Type Description
TextExtractionApiV2Error.LimitExceededError
View Source

AsLinkDownloadDisabledError

Gets this instance as a LinkDownloadDisabledError, or null.

Declaration
public TextExtractionApiV2Error.LinkDownloadDisabledError AsLinkDownloadDisabledError { get; }
Property Value
Type Description
TextExtractionApiV2Error.LinkDownloadDisabledError
View Source

AsNotFoundError

Gets this instance as a NotFoundError, or null.

Declaration
public TextExtractionApiV2Error.NotFoundError AsNotFoundError { get; }
Property Value
Type Description
TextExtractionApiV2Error.NotFoundError
View Source

AsOther

Gets this instance as a Other, or null.

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

AsServerError

Gets this instance as a ServerError, or null.

Declaration
public TextExtractionApiV2Error.ServerError AsServerError { get; }
Property Value
Type Description
TextExtractionApiV2Error.ServerError
View Source

AsSharedLinkPasswordProtected

Gets this instance as a SharedLinkPasswordProtected, or null.

Declaration
public TextExtractionApiV2Error.SharedLinkPasswordProtected AsSharedLinkPasswordProtected { get; }
Property Value
Type Description
TextExtractionApiV2Error.SharedLinkPasswordProtected
View Source

AsUnsupportedFormatError

Gets this instance as a UnsupportedFormatError, or null.

Declaration
public TextExtractionApiV2Error.UnsupportedFormatError AsUnsupportedFormatError { get; }
Property Value
Type Description
TextExtractionApiV2Error.UnsupportedFormatError
View Source

AsUserError

Gets this instance as a UserError, or null.

Declaration
public TextExtractionApiV2Error.UserError AsUserError { get; }
Property Value
Type Description
TextExtractionApiV2Error.UserError
View Source

IsConversionFailureError

Gets a value indicating whether this instance is ConversionFailureError

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

IsIsAFolderError

Gets a value indicating whether this instance is IsAFolderError

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

IsLimitExceededError

Gets a value indicating whether this instance is LimitExceededError

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

IsLinkDownloadDisabledError

Gets a value indicating whether this instance is LinkDownloadDisabledError

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

IsNotFoundError

Gets a value indicating whether this instance is NotFoundError

Declaration
public bool IsNotFoundError { 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

IsServerError

Gets a value indicating whether this instance is ServerError

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

IsSharedLinkPasswordProtected

Gets a value indicating whether this instance is SharedLinkPasswordProtected

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

IsUnsupportedFormatError

Gets a value indicating whether this instance is UnsupportedFormatError

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

IsUserError

Gets a value indicating whether this instance is UserError

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