你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

EventsExceptionInfo 构造函数

定义

重载

EventsExceptionInfo()

初始化 EventsExceptionInfo 类的新实例。

EventsExceptionInfo(Nullable<Int32>, String, String, String, String, String, String, String, String, String, String, String, String, String, String, IList<EventsExceptionDetail>)

初始化 EventsExceptionInfo 类的新实例。

EventsExceptionInfo()

Source:
EventsExceptionInfo.cs

初始化 EventsExceptionInfo 类的新实例。

public EventsExceptionInfo ();
Public Sub New ()

适用于

EventsExceptionInfo(Nullable<Int32>, String, String, String, String, String, String, String, String, String, String, String, String, String, String, IList<EventsExceptionDetail>)

Source:
EventsExceptionInfo.cs

初始化 EventsExceptionInfo 类的新实例。

public EventsExceptionInfo (int? severityLevel = default, string problemId = default, string handledAt = default, string assembly = default, string method = default, string message = default, string type = default, string outerType = default, string outerMethod = default, string outerAssembly = default, string outerMessage = default, string innermostType = default, string innermostMessage = default, string innermostMethod = default, string innermostAssembly = default, System.Collections.Generic.IList<Microsoft.Azure.ApplicationInsights.Query.Models.EventsExceptionDetail> details = default);
new Microsoft.Azure.ApplicationInsights.Query.Models.EventsExceptionInfo : Nullable<int> * string * string * string * string * string * string * string * string * string * string * string * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.ApplicationInsights.Query.Models.EventsExceptionDetail> -> Microsoft.Azure.ApplicationInsights.Query.Models.EventsExceptionInfo
Public Sub New (Optional severityLevel As Nullable(Of Integer) = Nothing, Optional problemId As String = Nothing, Optional handledAt As String = Nothing, Optional assembly As String = Nothing, Optional method As String = Nothing, Optional message As String = Nothing, Optional type As String = Nothing, Optional outerType As String = Nothing, Optional outerMethod As String = Nothing, Optional outerAssembly As String = Nothing, Optional outerMessage As String = Nothing, Optional innermostType As String = Nothing, Optional innermostMessage As String = Nothing, Optional innermostMethod As String = Nothing, Optional innermostAssembly As String = Nothing, Optional details As IList(Of EventsExceptionDetail) = Nothing)

参数

severityLevel
Nullable<Int32>

异常的严重性级别

problemId
String

异常的问题 ID

handledAt
String

指示处理异常的位置

assembly
String

引发异常的程序集

method
String

引发异常的方法

message
String

异常的消息

type
String

异常的类型

outerType
String

异常的外部类型

outerMethod
String

异常的外部方法

outerAssembly
String

异常的外部 assmebly

outerMessage
String

异常的外部消息

innermostType
String

异常的最内部类型

innermostMessage
String

异常的最内部消息

innermostMethod
String

异常的最内部方法

innermostAssembly
String

异常的最内部程序集

details
IList<EventsExceptionDetail>

异常的详细信息

适用于