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(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(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
- System.String
The error message.
- severity
- System.Nullable<SeverityTypes>
The severity of the error. Possible values include: 'Warning', 'Error', 'Info', 'SevereWarning', 'Deprecated', 'UserWarning'
- lineNumber
- System.Nullable<System.Int32>
The line number the error occurred on.
- columnNumber
- System.Nullable<System.Int32>
The column where the error occurred.
- start
- System.Nullable<System.Int32>
The starting index of the error.
- end
- System.Nullable<System.Int32>
The ending index of the error.