Dropbox .NET SDK
Show / Hide Table of Contents

Class DeleteSecondaryEmailResult

Result of trying to delete a secondary email address. 'success' is the only value indicating that a secondary email was successfully deleted. The other values explain the type of error that occurred, and include the email for which the error occurred.

Inheritance
object
DeleteSecondaryEmailResult
DeleteSecondaryEmailResult.CannotRemovePrimary
DeleteSecondaryEmailResult.NotFound
DeleteSecondaryEmailResult.Other
DeleteSecondaryEmailResult.Success
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class DeleteSecondaryEmailResult

Constructors

View Source

DeleteSecondaryEmailResult()

Initializes a new instance of the DeleteSecondaryEmailResult class.

Declaration
public DeleteSecondaryEmailResult()

Properties

View Source

AsCannotRemovePrimary

Gets this instance as a CannotRemovePrimary, or null.

Declaration
public DeleteSecondaryEmailResult.CannotRemovePrimary AsCannotRemovePrimary { get; }
Property Value
Type Description
DeleteSecondaryEmailResult.CannotRemovePrimary
View Source

AsNotFound

Gets this instance as a NotFound, or null.

Declaration
public DeleteSecondaryEmailResult.NotFound AsNotFound { get; }
Property Value
Type Description
DeleteSecondaryEmailResult.NotFound
View Source

AsOther

Gets this instance as a Other, or null.

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

AsSuccess

Gets this instance as a Success, or null.

Declaration
public DeleteSecondaryEmailResult.Success AsSuccess { get; }
Property Value
Type Description
DeleteSecondaryEmailResult.Success
View Source

IsCannotRemovePrimary

Gets a value indicating whether this instance is CannotRemovePrimary

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

IsNotFound

Gets a value indicating whether this instance is NotFound

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

IsSuccess

Gets a value indicating whether this instance is Success

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