Bagikan melalui


JobSchedulingError Constructors

Definition

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