Dropbox .NET SDK
Show / Hide Table of Contents

Class SsoPolicy

The sso policy object

Inheritance
object
SsoPolicy
SsoPolicy.Disabled
SsoPolicy.Optional
SsoPolicy.Other
SsoPolicy.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 SsoPolicy

Constructors

View Source

SsoPolicy()

Initializes a new instance of the SsoPolicy class.

Declaration
public SsoPolicy()

Properties

View Source

AsDisabled

Gets this instance as a Disabled, or null.

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

AsOptional

Gets this instance as a Optional, or null.

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

AsOther

Gets this instance as a Other, or null.

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

AsRequired

Gets this instance as a Required, or null.

Declaration
public SsoPolicy.Required AsRequired { get; }
Property Value
Type Description
SsoPolicy.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