次の方法で共有


ErrorInfo コンストラクター

定義

オーバーロード

ErrorInfo()

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

ErrorInfo(String, String, IList<ErrorDetail>, ErrorInfo, Object)

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

ErrorInfo()

ソース:
ErrorInfo.cs

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

public ErrorInfo();
Public Sub New ()

適用対象

ErrorInfo(String, String, IList<ErrorDetail>, ErrorInfo, Object)

ソース:
ErrorInfo.cs

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

public ErrorInfo(string code, string message, System.Collections.Generic.IList<Microsoft.Azure.OperationalInsights.Models.ErrorDetail> details = default, Microsoft.Azure.OperationalInsights.Models.ErrorInfo innererror = default, object additionalProperties = default);
new Microsoft.Azure.OperationalInsights.Models.ErrorInfo : string * string * System.Collections.Generic.IList<Microsoft.Azure.OperationalInsights.Models.ErrorDetail> * Microsoft.Azure.OperationalInsights.Models.ErrorInfo * obj -> Microsoft.Azure.OperationalInsights.Models.ErrorInfo
Public Sub New (code As String, message As String, Optional details As IList(Of ErrorDetail) = Nothing, Optional innererror As ErrorInfo = Nothing, Optional additionalProperties As Object = Nothing)

パラメーター

code
String

コンピューターで読み取り可能なエラー コード。

message
String

人間が判読できるエラー メッセージ。

details
IList<ErrorDetail>

エラーの詳細。

innererror
ErrorInfo

内部エラーの詳細 (存在する場合)。

additionalProperties
Object

適用対象