Aracılığıyla paylaş


Diagnostics Constructors

Definition

Overloads

Diagnostics()

Initializes a new instance of the Diagnostics class.

Diagnostics(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String, Nullable<SeverityTypes>, Nullable<Int32>)

Initializes a new instance of the Diagnostics class.

Diagnostics(String, Nullable<SeverityTypes>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the Diagnostics class.

Diagnostics()

Initializes a new instance of the Diagnostics class.

public Diagnostics ();
Public Sub New ()

Applies to

Diagnostics(Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, String, Nullable<SeverityTypes>, Nullable<Int32>)

Initializes a new instance of the Diagnostics class.

public Diagnostics (int? columnNumber = default, int? end = default, int? lineNumber = default, string message = default, Microsoft.Azure.Management.DataLake.Analytics.Models.SeverityTypes? severity = default, int? start = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.Diagnostics : Nullable<int> * Nullable<int> * Nullable<int> * string * Nullable<Microsoft.Azure.Management.DataLake.Analytics.Models.SeverityTypes> * Nullable<int> -> Microsoft.Azure.Management.DataLake.Analytics.Models.Diagnostics
Public Sub New (Optional columnNumber As Nullable(Of Integer) = Nothing, Optional end As Nullable(Of Integer) = Nothing, Optional lineNumber As Nullable(Of Integer) = Nothing, Optional message As String = Nothing, Optional severity As Nullable(Of SeverityTypes) = Nothing, Optional start As Nullable(Of Integer) = Nothing)

Parameters

columnNumber
Nullable<Int32>

the column where the error occured.

end
Nullable<Int32>

the ending index of the error.

lineNumber
Nullable<Int32>

the line number the error occured on.

message
String

the error message.

severity
Nullable<SeverityTypes>

the severity of the error. Possible values include: 'Warning', 'Error', 'Info', 'SevereWarning', 'Deprecated', 'UserWarning'

start
Nullable<Int32>

the starting index of the error.

Applies to

Diagnostics(String, Nullable<SeverityTypes>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the Diagnostics class.

public Diagnostics (string message = default, Microsoft.Azure.Management.DataLake.Analytics.Models.SeverityTypes? severity = default, int? lineNumber = default, int? columnNumber = default, int? start = default, int? end = default);
new Microsoft.Azure.Management.DataLake.Analytics.Models.Diagnostics : string * Nullable<Microsoft.Azure.Management.DataLake.Analytics.Models.SeverityTypes> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.DataLake.Analytics.Models.Diagnostics
Public Sub New (Optional message As String = Nothing, Optional severity As Nullable(Of SeverityTypes) = Nothing, Optional lineNumber As Nullable(Of Integer) = Nothing, Optional columnNumber As Nullable(Of Integer) = Nothing, Optional start As Nullable(Of Integer) = Nothing, Optional end As Nullable(Of Integer) = Nothing)

Parameters

message
String

The error message.

severity
Nullable<SeverityTypes>

The severity of the error. Possible values include: 'Warning', 'Error', 'Info', 'SevereWarning', 'Deprecated', 'UserWarning'

lineNumber
Nullable<Int32>

The line number the error occurred on.

columnNumber
Nullable<Int32>

The column where the error occurred.

start
Nullable<Int32>

The starting index of the error.

end
Nullable<Int32>

The ending index of the error.

Applies to