Dropbox .NET SDK
Show / Hide Table of Contents

Class AddSecondaryEmailResult

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

Inheritance
object
AddSecondaryEmailResult
AddSecondaryEmailResult.AlreadyOwnedByUser
AddSecondaryEmailResult.AlreadyPending
AddSecondaryEmailResult.Other
AddSecondaryEmailResult.RateLimited
AddSecondaryEmailResult.ReachedLimit
AddSecondaryEmailResult.Success
AddSecondaryEmailResult.TooManyUpdates
AddSecondaryEmailResult.TransientError
AddSecondaryEmailResult.Unavailable
AddSecondaryEmailResult.UnknownError
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 AddSecondaryEmailResult

Constructors

View Source

AddSecondaryEmailResult()

Initializes a new instance of the AddSecondaryEmailResult class.

Declaration
public AddSecondaryEmailResult()

Properties

View Source

AsAlreadyOwnedByUser

Gets this instance as a AlreadyOwnedByUser, or null.

Declaration
public AddSecondaryEmailResult.AlreadyOwnedByUser AsAlreadyOwnedByUser { get; }
Property Value
Type Description
AddSecondaryEmailResult.AlreadyOwnedByUser
View Source

AsAlreadyPending

Gets this instance as a AlreadyPending, or null.

Declaration
public AddSecondaryEmailResult.AlreadyPending AsAlreadyPending { get; }
Property Value
Type Description
AddSecondaryEmailResult.AlreadyPending
View Source

AsOther

Gets this instance as a Other, or null.

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

AsRateLimited

Gets this instance as a RateLimited, or null.

Declaration
public AddSecondaryEmailResult.RateLimited AsRateLimited { get; }
Property Value
Type Description
AddSecondaryEmailResult.RateLimited
View Source

AsReachedLimit

Gets this instance as a ReachedLimit, or null.

Declaration
public AddSecondaryEmailResult.ReachedLimit AsReachedLimit { get; }
Property Value
Type Description
AddSecondaryEmailResult.ReachedLimit
View Source

AsSuccess

Gets this instance as a Success, or null.

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

AsTooManyUpdates

Gets this instance as a TooManyUpdates, or null.

Declaration
public AddSecondaryEmailResult.TooManyUpdates AsTooManyUpdates { get; }
Property Value
Type Description
AddSecondaryEmailResult.TooManyUpdates
View Source

AsTransientError

Gets this instance as a TransientError, or null.

Declaration
public AddSecondaryEmailResult.TransientError AsTransientError { get; }
Property Value
Type Description
AddSecondaryEmailResult.TransientError
View Source

AsUnavailable

Gets this instance as a Unavailable, or null.

Declaration
public AddSecondaryEmailResult.Unavailable AsUnavailable { get; }
Property Value
Type Description
AddSecondaryEmailResult.Unavailable
View Source

AsUnknownError

Gets this instance as a UnknownError, or null.

Declaration
public AddSecondaryEmailResult.UnknownError AsUnknownError { get; }
Property Value
Type Description
AddSecondaryEmailResult.UnknownError
View Source

IsAlreadyOwnedByUser

Gets a value indicating whether this instance is AlreadyOwnedByUser

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

IsAlreadyPending

Gets a value indicating whether this instance is AlreadyPending

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

IsRateLimited

Gets a value indicating whether this instance is RateLimited

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

IsReachedLimit

Gets a value indicating whether this instance is ReachedLimit

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

IsTooManyUpdates

Gets a value indicating whether this instance is TooManyUpdates

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

IsTransientError

Gets a value indicating whether this instance is TransientError

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

IsUnavailable

Gets a value indicating whether this instance is Unavailable

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

IsUnknownError

Gets a value indicating whether this instance is UnknownError

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