JobSchedulingError 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
JobSchedulingError() |
Initializes a new instance of the JobSchedulingError class. |
JobSchedulingError(ErrorCategory, String, String, IList<NameValuePair>) |
Initializes a new instance of the JobSchedulingError class. |
JobSchedulingError()
- Source:
- JobSchedulingError.cs
Initializes a new instance of the JobSchedulingError class.
public JobSchedulingError ();
Public Sub New ()
Applies to
JobSchedulingError(ErrorCategory, String, String, IList<NameValuePair>)
- Source:
- JobSchedulingError.cs
Initializes a new instance of the JobSchedulingError class.
public JobSchedulingError (Microsoft.Azure.Batch.Protocol.Models.ErrorCategory category, string code = default, string message = default, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.NameValuePair> details = default);
new Microsoft.Azure.Batch.Protocol.Models.JobSchedulingError : Microsoft.Azure.Batch.Protocol.Models.ErrorCategory * string * string * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.NameValuePair> -> Microsoft.Azure.Batch.Protocol.Models.JobSchedulingError
Public Sub New (category As ErrorCategory, Optional code As String = Nothing, Optional message As String = Nothing, Optional details As IList(Of NameValuePair) = Nothing)
Parameters
- category
- ErrorCategory
The category of the Job scheduling error.
- code
- String
An identifier for the Job scheduling error. Codes are invariant and are intended to be consumed programmatically.
- message
- String
A message describing the Job scheduling error, intended to be suitable for display in a user interface.
- details
- IList<NameValuePair>
A list of additional error details related to the scheduling error.
Applies to
Azure SDK for .NET