Dropbox .NET SDK
Show / Hide Table of Contents

Class UserSecondaryEmailsArg

User and a list of secondary emails.

Inheritance
object
UserSecondaryEmailsArg
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 UserSecondaryEmailsArg

Constructors

View Source

UserSecondaryEmailsArg(UserSelectorArg, IEnumerable<string>)

Initializes a new instance of the UserSecondaryEmailsArg class.

Declaration
public UserSecondaryEmailsArg(UserSelectorArg user, IEnumerable<string> secondaryEmails)
Parameters
Type Name Description
UserSelectorArg user

The user

IEnumerable<string> secondaryEmails

The secondary emails

Properties

View Source

SecondaryEmails

Gets the secondary emails of the user secondary emails arg

Declaration
public IList<string> SecondaryEmails { get; protected set; }
Property Value
Type Description
IList<string>
View Source

User

Gets the user of the user secondary emails arg

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