Share via


InformationType Constructors

Definition

Overloads

InformationType()

Initializes a new instance of the InformationType class.

InformationType(String, String, Nullable<Int32>, Nullable<Guid>, Nullable<Boolean>, Nullable<Boolean>, IList<InformationProtectionKeyword>)

Initializes a new instance of the InformationType class.

InformationType()

Initializes a new instance of the InformationType class.

public InformationType ();
Public Sub New ()

Applies to

InformationType(String, String, Nullable<Int32>, Nullable<Guid>, Nullable<Boolean>, Nullable<Boolean>, IList<InformationProtectionKeyword>)

Initializes a new instance of the InformationType class.

public InformationType (string displayName = default, string description = default, int? order = default, Guid? recommendedLabelId = default, bool? enabled = default, bool? custom = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.InformationProtectionKeyword> keywords = default);
new Microsoft.Azure.Management.Security.Models.InformationType : string * string * Nullable<int> * Nullable<Guid> * Nullable<bool> * Nullable<bool> * System.Collections.Generic.IList<Microsoft.Azure.Management.Security.Models.InformationProtectionKeyword> -> Microsoft.Azure.Management.Security.Models.InformationType
Public Sub New (Optional displayName As String = Nothing, Optional description As String = Nothing, Optional order As Nullable(Of Integer) = Nothing, Optional recommendedLabelId As Nullable(Of Guid) = Nothing, Optional enabled As Nullable(Of Boolean) = Nothing, Optional custom As Nullable(Of Boolean) = Nothing, Optional keywords As IList(Of InformationProtectionKeyword) = Nothing)

Parameters

displayName
String

The name of the information type.

description
String

The description of the information type.

order
Nullable<Int32>

The order of the information type.

recommendedLabelId
Nullable<Guid>

The recommended label id to be associated with this information type.

enabled
Nullable<Boolean>

Indicates whether the information type is enabled or not.

custom
Nullable<Boolean>

Indicates whether the information type is custom or not.

keywords
IList<InformationProtectionKeyword>

The information type keywords.

Applies to