共用方式為


AutoScaleRunError Constructors

Definition

Overloads

AutoScaleRunError()

Initializes a new instance of the AutoScaleRunError class.

AutoScaleRunError(String, String, IList<NameValuePair>)

Initializes a new instance of the AutoScaleRunError class.

AutoScaleRunError()

Source:
AutoScaleRunError.cs

Initializes a new instance of the AutoScaleRunError class.

public AutoScaleRunError ();
Public Sub New ()

Applies to

AutoScaleRunError(String, String, IList<NameValuePair>)

Source:
AutoScaleRunError.cs

Initializes a new instance of the AutoScaleRunError class.

public AutoScaleRunError (string code = default, string message = default, System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.NameValuePair> values = default);
new Microsoft.Azure.Batch.Protocol.Models.AutoScaleRunError : string * string * System.Collections.Generic.IList<Microsoft.Azure.Batch.Protocol.Models.NameValuePair> -> Microsoft.Azure.Batch.Protocol.Models.AutoScaleRunError
Public Sub New (Optional code As String = Nothing, Optional message As String = Nothing, Optional values As IList(Of NameValuePair) = Nothing)

Parameters

code
String

An identifier for the autoscale error. Codes are invariant and are intended to be consumed programmatically.

message
String

A message describing the autoscale error, intended to be suitable for display in a user interface.

values
IList<NameValuePair>

A list of additional error details related to the autoscale error.

Applies to