Dropbox .NET SDK
Show / Hide Table of Contents

Class TwoStepVerificationState

The two step verification state object

Inheritance
object
TwoStepVerificationState
TwoStepVerificationState.Disabled
TwoStepVerificationState.Optional
TwoStepVerificationState.Other
TwoStepVerificationState.Required
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamPolicies
Assembly: Dropbox.Api.dll
Syntax
public class TwoStepVerificationState

Constructors

View Source

TwoStepVerificationState()

Initializes a new instance of the TwoStepVerificationState class.

Declaration
public TwoStepVerificationState()

Properties

View Source

AsDisabled

Gets this instance as a Disabled, or null.

Declaration
public TwoStepVerificationState.Disabled AsDisabled { get; }
Property Value
Type Description
TwoStepVerificationState.Disabled
View Source

AsOptional

Gets this instance as a Optional, or null.

Declaration
public TwoStepVerificationState.Optional AsOptional { get; }
Property Value
Type Description
TwoStepVerificationState.Optional
View Source

AsOther

Gets this instance as a Other, or null.

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

AsRequired

Gets this instance as a Required, or null.

Declaration
public TwoStepVerificationState.Required AsRequired { get; }
Property Value
Type Description
TwoStepVerificationState.Required
View Source

IsDisabled

Gets a value indicating whether this instance is Disabled

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

IsOptional

Gets a value indicating whether this instance is Optional

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

IsRequired

Gets a value indicating whether this instance is Required

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