Dropbox .NET SDK
Show / Hide Table of Contents

Class PreviewError

The preview error object

Inheritance
object
PreviewError
PreviewError.InProgress
PreviewError.Path
PreviewError.UnsupportedContent
PreviewError.UnsupportedExtension
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Files
Assembly: Dropbox.Api.dll
Syntax
public class PreviewError

Constructors

View Source

PreviewError()

Initializes a new instance of the PreviewError class.

Declaration
public PreviewError()

Properties

View Source

AsInProgress

Gets this instance as a InProgress, or null.

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

AsPath

Gets this instance as a Path, or null.

Declaration
public PreviewError.Path AsPath { get; }
Property Value
Type Description
PreviewError.Path
View Source

AsUnsupportedContent

Gets this instance as a UnsupportedContent, or null.

Declaration
public PreviewError.UnsupportedContent AsUnsupportedContent { get; }
Property Value
Type Description
PreviewError.UnsupportedContent
View Source

AsUnsupportedExtension

Gets this instance as a UnsupportedExtension, or null.

Declaration
public PreviewError.UnsupportedExtension AsUnsupportedExtension { get; }
Property Value
Type Description
PreviewError.UnsupportedExtension
View Source

IsInProgress

Gets a value indicating whether this instance is InProgress

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

IsPath

Gets a value indicating whether this instance is Path

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

IsUnsupportedContent

Gets a value indicating whether this instance is UnsupportedContent

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

IsUnsupportedExtension

Gets a value indicating whether this instance is UnsupportedExtension

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