Bagikan melalui


EventsExceptionDetailsParsedStack Constructors

Definition

Overloads

EventsExceptionDetailsParsedStack()

Initializes a new instance of the EventsExceptionDetailsParsedStack class.

EventsExceptionDetailsParsedStack(String, String, Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the EventsExceptionDetailsParsedStack class.

EventsExceptionDetailsParsedStack()

Source:
EventsExceptionDetailsParsedStack.cs

Initializes a new instance of the EventsExceptionDetailsParsedStack class.

public EventsExceptionDetailsParsedStack ();
Public Sub New ()

Applies to

EventsExceptionDetailsParsedStack(String, String, Nullable<Int64>, Nullable<Int64>)

Source:
EventsExceptionDetailsParsedStack.cs

Initializes a new instance of the EventsExceptionDetailsParsedStack class.

public EventsExceptionDetailsParsedStack (string assembly = default, string method = default, long? level = default, long? line = default);
new Microsoft.Azure.ApplicationInsights.Query.Models.EventsExceptionDetailsParsedStack : string * string * Nullable<int64> * Nullable<int64> -> Microsoft.Azure.ApplicationInsights.Query.Models.EventsExceptionDetailsParsedStack
Public Sub New (Optional assembly As String = Nothing, Optional method As String = Nothing, Optional level As Nullable(Of Long) = Nothing, Optional line As Nullable(Of Long) = Nothing)

Parameters

assembly
String

The assembly of the stack entry

method
String

The method of the stack entry

level
Nullable<Int64>

The level of the stack entry

line
Nullable<Int64>

The line of the stack entry

Applies to