Dropbox .NET SDK
Show / Hide Table of Contents

Class DeleteManualContactsError

The delete manual contacts error object

Inheritance
object
DeleteManualContactsError
DeleteManualContactsError.ContactsNotFound
DeleteManualContactsError.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.Contacts
Assembly: Dropbox.Api.dll
Syntax
public class DeleteManualContactsError

Constructors

View Source

DeleteManualContactsError()

Initializes a new instance of the DeleteManualContactsError class.

Declaration
public DeleteManualContactsError()

Properties

View Source

AsContactsNotFound

Gets this instance as a ContactsNotFound, or null.

Declaration
public DeleteManualContactsError.ContactsNotFound AsContactsNotFound { get; }
Property Value
Type Description
DeleteManualContactsError.ContactsNotFound
View Source

AsOther

Gets this instance as a Other, or null.

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

IsContactsNotFound

Gets a value indicating whether this instance is ContactsNotFound

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