Share via


DetectorDefinition Constructors

Definition

Overloads

DetectorDefinition()

Initializes a new instance of the DetectorDefinition class.

DetectorDefinition(String, String, Nullable<Double>, Nullable<Boolean>)

Initializes a new instance of the DetectorDefinition class.

DetectorDefinition()

Initializes a new instance of the DetectorDefinition class.

public DetectorDefinition ();
Public Sub New ()

Applies to

DetectorDefinition(String, String, Nullable<Double>, Nullable<Boolean>)

Initializes a new instance of the DetectorDefinition class.

public DetectorDefinition (string displayName = default, string description = default, double? rank = default, bool? isEnabled = default);
new Microsoft.Azure.Management.WebSites.Models.DetectorDefinition : string * string * Nullable<double> * Nullable<bool> -> Microsoft.Azure.Management.WebSites.Models.DetectorDefinition
Public Sub New (Optional displayName As String = Nothing, Optional description As String = Nothing, Optional rank As Nullable(Of Double) = Nothing, Optional isEnabled As Nullable(Of Boolean) = Nothing)

Parameters

displayName
String

Display name of the detector

description
String

Description of the detector

rank
Nullable<Double>

Detector Rank

isEnabled
Nullable<Boolean>

Flag representing whether detector is enabled or not.

Applies to