Dropbox .NET SDK
Show / Hide Table of Contents

Class SecondaryEmail

The secondary email object

Inheritance
object
SecondaryEmail
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.SecondaryEmails
Assembly: Dropbox.Api.dll
Syntax
public class SecondaryEmail

Constructors

View Source

SecondaryEmail(string, bool)

Initializes a new instance of the SecondaryEmail class.

Declaration
public SecondaryEmail(string email, bool isVerified)
Parameters
Type Name Description
string email

Secondary email address.

bool isVerified

Whether or not the secondary email address is verified to be owned by a user.

Properties

View Source

Email

Secondary email address.

Declaration
public string Email { get; protected set; }
Property Value
Type Description
string
View Source

IsVerified

Whether or not the secondary email address is verified to be owned by a user.

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