Dropbox .NET SDK
Show / Hide Table of Contents

Class ThumbnailError

The thumbnail error object

Inheritance
object
ThumbnailError
ThumbnailError.Other
ThumbnailError.PermanentFailure
ThumbnailError.TemporaryFailure
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Account
Assembly: Dropbox.Api.dll
Syntax
public class ThumbnailError

Constructors

View Source

ThumbnailError()

Initializes a new instance of the ThumbnailError class.

Declaration
public ThumbnailError()

Properties

View Source

AsOther

Gets this instance as a Other, or null.

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

AsPermanentFailure

Gets this instance as a PermanentFailure, or null.

Declaration
public ThumbnailError.PermanentFailure AsPermanentFailure { get; }
Property Value
Type Description
ThumbnailError.PermanentFailure
View Source

AsTemporaryFailure

Gets this instance as a TemporaryFailure, or null.

Declaration
public ThumbnailError.TemporaryFailure AsTemporaryFailure { get; }
Property Value
Type Description
ThumbnailError.TemporaryFailure
View Source

IsOther

Gets a value indicating whether this instance is Other

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

IsPermanentFailure

Gets a value indicating whether this instance is PermanentFailure

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

IsTemporaryFailure

Gets a value indicating whether this instance is TemporaryFailure

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