次の方法で共有


ComputeNodeError コンストラクター

定義

オーバーロード

ComputeNodeError()

ComputeNodeError クラスの新しいインスタンスを初期化します。

ComputeNodeError(String, String, IList<NameValuePair>)

ComputeNodeError クラスの新しいインスタンスを初期化します。

ComputeNodeError()

ソース:
ComputeNodeError.cs

ComputeNodeError クラスの新しいインスタンスを初期化します。

public ComputeNodeError();
Public Sub New ()

適用対象

ComputeNodeError(String, String, IList<NameValuePair>)

ソース:
ComputeNodeError.cs

ComputeNodeError クラスの新しいインスタンスを初期化します。

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

パラメーター

code
String

コンピューティング ノード エラーの識別子。 コードは不変であり、プログラムによって使用されることを意図しています。

message
String

ユーザー インターフェイスでの表示に適したコンピューティング ノード エラーを説明するメッセージ。

errorDetails
IList<NameValuePair>

コンピューティング ノード エラーに関連する追加のエラーの詳細の一覧。

適用対象