Dropbox .NET SDK
Show / Hide Table of Contents

Class FileErrorResult

The file error result object

Inheritance
object
FileErrorResult
FileErrorResult.FileNotFoundError
FileErrorResult.InvalidFileActionError
FileErrorResult.Other
FileErrorResult.PermissionDeniedError
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Sharing
Assembly: Dropbox.Api.dll
Syntax
public class FileErrorResult

Constructors

View Source

FileErrorResult()

Initializes a new instance of the FileErrorResult class.

Declaration
public FileErrorResult()

Properties

View Source

AsFileNotFoundError

Gets this instance as a FileNotFoundError, or null.

Declaration
public FileErrorResult.FileNotFoundError AsFileNotFoundError { get; }
Property Value
Type Description
FileErrorResult.FileNotFoundError
View Source

AsInvalidFileActionError

Gets this instance as a InvalidFileActionError, or null.

Declaration
public FileErrorResult.InvalidFileActionError AsInvalidFileActionError { get; }
Property Value
Type Description
FileErrorResult.InvalidFileActionError
View Source

AsOther

Gets this instance as a Other, or null.

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

AsPermissionDeniedError

Gets this instance as a PermissionDeniedError, or null.

Declaration
public FileErrorResult.PermissionDeniedError AsPermissionDeniedError { get; }
Property Value
Type Description
FileErrorResult.PermissionDeniedError
View Source

IsFileNotFoundError

Gets a value indicating whether this instance is FileNotFoundError

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

IsInvalidFileActionError

Gets a value indicating whether this instance is InvalidFileActionError

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

IsPermissionDeniedError

Gets a value indicating whether this instance is PermissionDeniedError

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