Dropbox .NET SDK

Class ClassificationType

The type of classification (currently only personal information)

Inheritance
object
ClassificationType
ClassificationType.Other
ClassificationType.PersonalInformation
ClassificationType.Pii
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class ClassificationType

Constructors

View Source

ClassificationType()

Initializes a new instance of the ClassificationType class.

Declaration
public ClassificationType()

Properties

View Source

AsOther

Gets this instance as a Other, or null.

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

AsPersonalInformation

Gets this instance as a PersonalInformation, or null.

Declaration
public ClassificationType.PersonalInformation AsPersonalInformation { get; }
Property Value
Type Description
ClassificationType.PersonalInformation
View Source

AsPii

Gets this instance as a Pii, or null.

Declaration
public ClassificationType.Pii AsPii { get; }
Property Value
Type Description
ClassificationType.Pii
View Source

IsOther

Gets a value indicating whether this instance is Other

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

IsPersonalInformation

Gets a value indicating whether this instance is PersonalInformation

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

IsPii

Gets a value indicating whether this instance is Pii

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