Dropbox .NET SDK
Show / Hide Table of Contents

Class WriteConflictError

The write conflict error object

Inheritance
object
WriteConflictError
WriteConflictError.File
WriteConflictError.FileAncestor
WriteConflictError.Folder
WriteConflictError.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.Files
Assembly: Dropbox.Api.dll
Syntax
public class WriteConflictError

Constructors

View Source

WriteConflictError()

Initializes a new instance of the WriteConflictError class.

Declaration
public WriteConflictError()

Properties

View Source

AsFile

Gets this instance as a File, or null.

Declaration
public WriteConflictError.File AsFile { get; }
Property Value
Type Description
WriteConflictError.File
View Source

AsFileAncestor

Gets this instance as a FileAncestor, or null.

Declaration
public WriteConflictError.FileAncestor AsFileAncestor { get; }
Property Value
Type Description
WriteConflictError.FileAncestor
View Source

AsFolder

Gets this instance as a Folder, or null.

Declaration
public WriteConflictError.Folder AsFolder { get; }
Property Value
Type Description
WriteConflictError.Folder
View Source

AsOther

Gets this instance as a Other, or null.

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

IsFile

Gets a value indicating whether this instance is File

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

IsFileAncestor

Gets a value indicating whether this instance is FileAncestor

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

IsFolder

Gets a value indicating whether this instance is Folder

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