EventsExceptionInfo Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
EventsExceptionInfo() |
Initializes a new instance of the EventsExceptionInfo class. |
EventsExceptionInfo(Nullable<Int32>, String, String, String, String, String, String, String, String, String, String, String, String, String, String, IList<EventsExceptionDetail>) |
Initializes a new instance of the EventsExceptionInfo class. |
EventsExceptionInfo()
- Source:
- EventsExceptionInfo.cs
Initializes a new instance of the EventsExceptionInfo class.
public EventsExceptionInfo ();
Public Sub New ()
Applies to
EventsExceptionInfo(Nullable<Int32>, String, String, String, String, String, String, String, String, String, String, String, String, String, String, IList<EventsExceptionDetail>)
- Source:
- EventsExceptionInfo.cs
Initializes a new instance of the EventsExceptionInfo class.
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)
Parameters
- problemId
- String
The problem ID of the exception
- handledAt
- String
Indicates where the exception was handled at
- assembly
- String
The assembly which threw the exception
- method
- String
The method that threw the exception
- message
- String
The message of the exception
- type
- String
The type of the exception
- outerType
- String
The outer type of the exception
- outerMethod
- String
The outer method of the exception
- outerAssembly
- String
The outer assmebly of the exception
- outerMessage
- String
The outer message of the exception
- innermostType
- String
The inner most type of the exception
- innermostMessage
- String
The inner most message of the exception
- innermostMethod
- String
The inner most method of the exception
- innermostAssembly
- String
The inner most assembly of the exception
- details
- IList<EventsExceptionDetail>
The details of the exception
Applies to
Azure SDK for .NET