Show / Hide Table of Contents

Class UserDeleteResult

Result of trying to delete a user's secondary emails. 'success' is the only value indicating that a user was successfully retrieved for deleting secondary emails. The other values explain the type of error that occurred, and include the user for which the error occurred.

Inheritance
System.Object
UserDeleteResult
UserDeleteResult.InvalidUser
UserDeleteResult.Other
UserDeleteResult.Success
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dropbox.Api.Team
Assembly: Dropbox.Api.dll
Syntax
public class UserDeleteResult

Constructors

| Improve this Doc View Source

UserDeleteResult()

Initializes a new instance of the UserDeleteResult class.

Declaration
public UserDeleteResult()

Properties

| Improve this Doc View Source

AsInvalidUser

Gets this instance as a InvalidUser, or null.

Declaration
public UserDeleteResult.InvalidUser AsInvalidUser { get; }
Property Value
Type Description
UserDeleteResult.InvalidUser
| Improve this Doc View Source

AsOther

Gets this instance as a Other, or null.

Declaration
public UserDeleteResult.Other AsOther { get; }
Property Value
Type Description
UserDeleteResult.Other
| Improve this Doc View Source

AsSuccess

Gets this instance as a Success, or null.

Declaration
public UserDeleteResult.Success AsSuccess { get; }
Property Value
Type Description
UserDeleteResult.Success
| Improve this Doc View Source

IsInvalidUser

Gets a value indicating whether this instance is InvalidUser

Declaration
public bool IsInvalidUser { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IsOther

Gets a value indicating whether this instance is Other

Declaration
public bool IsOther { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IsSuccess

Gets a value indicating whether this instance is Success

Declaration
public bool IsSuccess { get; }
Property Value
Type Description
System.Boolean
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • UserDeleteResult()
  • Properties
    • AsInvalidUser
    • AsOther
    • AsSuccess
    • IsInvalidUser
    • IsOther
    • IsSuccess
Back to top Generated by DocFX