Share via


ExceptionTelemetry コンストラクター

定義

オーバーロード

ExceptionTelemetry()

空のプロパティを使用して、 ExceptionTelemetry クラスの新しいインスタンスを初期化します。

ExceptionTelemetry(Exception)

空のプロパティを使用して、 ExceptionTelemetry クラスの新しいインスタンスを初期化します。

ExceptionTelemetry(IEnumerable<ExceptionDetailsInfo>, Nullable<SeverityLevel>, String, IDictionary<String,String>, IDictionary<String,Double>)

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

ExceptionTelemetry()

空のプロパティを使用して、 ExceptionTelemetry クラスの新しいインスタンスを初期化します。

public ExceptionTelemetry ();
Public Sub New ()

適用対象

ExceptionTelemetry(Exception)

空のプロパティを使用して、 ExceptionTelemetry クラスの新しいインスタンスを初期化します。

public ExceptionTelemetry (Exception exception);
new Microsoft.ApplicationInsights.DataContracts.ExceptionTelemetry : Exception -> Microsoft.ApplicationInsights.DataContracts.ExceptionTelemetry
Public Sub New (exception As Exception)

パラメーター

exception
Exception

例外インスタンス。

適用対象

ExceptionTelemetry(IEnumerable<ExceptionDetailsInfo>, Nullable<SeverityLevel>, String, IDictionary<String,String>, IDictionary<String,Double>)

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

public ExceptionTelemetry (System.Collections.Generic.IEnumerable<Microsoft.ApplicationInsights.DataContracts.ExceptionDetailsInfo> exceptionDetailsInfoList, Microsoft.ApplicationInsights.DataContracts.SeverityLevel? severityLevel, string problemId, System.Collections.Generic.IDictionary<string,string> properties, System.Collections.Generic.IDictionary<string,double> measurements);
new Microsoft.ApplicationInsights.DataContracts.ExceptionTelemetry : seq<Microsoft.ApplicationInsights.DataContracts.ExceptionDetailsInfo> * Nullable<Microsoft.ApplicationInsights.DataContracts.SeverityLevel> * string * System.Collections.Generic.IDictionary<string, string> * System.Collections.Generic.IDictionary<string, double> -> Microsoft.ApplicationInsights.DataContracts.ExceptionTelemetry
Public Sub New (exceptionDetailsInfoList As IEnumerable(Of ExceptionDetailsInfo), severityLevel As Nullable(Of SeverityLevel), problemId As String, properties As IDictionary(Of String, String), measurements As IDictionary(Of String, Double))

パラメーター

exceptionDetailsInfoList
IEnumerable<ExceptionDetailsInfo>

例外情報。

severityLevel
Nullable<SeverityLevel>

重要度レベル。

problemId
String

問題 ID。

properties
IDictionary<String,String>

プロパティ。

measurements
IDictionary<String,Double>

測定。

適用対象