Dropbox .NET SDK
Show / Hide Table of Contents

Class UserResendEmailsResult

The user resend emails result object

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

Constructors

View Source

UserResendEmailsResult(UserSelectorArg, IEnumerable<ResendSecondaryEmailResult>)

Initializes a new instance of the UserResendEmailsResult class.

Declaration
public UserResendEmailsResult(UserSelectorArg user, IEnumerable<ResendSecondaryEmailResult> results)
Parameters
Type Name Description
UserSelectorArg user

The user

IEnumerable<ResendSecondaryEmailResult> results

The results

Properties

View Source

Results

Gets the results of the user resend emails result

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

User

Gets the user of the user resend emails result

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