Status Constructors

Definition

Overloads

Status()

Initializes a new instance of the Status class.

Status(String, Nullable<InsightStatus>)

Initializes a new instance of the Status class.

Status()

Initializes a new instance of the Status class.

public Status ();
Public Sub New ()

Applies to

Status(String, Nullable<InsightStatus>)

Initializes a new instance of the Status class.

public Status (string message = default, Microsoft.Azure.Management.WebSites.Models.InsightStatus? statusId = default);
new Microsoft.Azure.Management.WebSites.Models.Status : string * Nullable<Microsoft.Azure.Management.WebSites.Models.InsightStatus> -> Microsoft.Azure.Management.WebSites.Models.Status
Public Sub New (Optional message As String = Nothing, Optional statusId As Nullable(Of InsightStatus) = Nothing)

Parameters

message
String

Descriptive message.

statusId
Nullable<InsightStatus>

Level of the most severe insight generated by the detector. Possible values include: 'Critical', 'Warning', 'Info', 'Success', 'None'

Applies to