Diagnostics Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- message
- String
the error message.
- severity
- Nullable<SeverityTypes>
the severity of the error. Possible values include: 'Warning', 'Error', 'Info', 'SevereWarning', 'Deprecated', 'UserWarning'
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'
Applies to
Azure SDK for .NET