Share via


ExceptionDetailsInfo Constructor

Definition

Constructs the instance of ExceptionDetailsInfo.

public ExceptionDetailsInfo (int id, int outerId, string typeName, string message, bool hasFullStack, string stack, System.Collections.Generic.IEnumerable<Microsoft.ApplicationInsights.DataContracts.StackFrame> parsedStack);
new Microsoft.ApplicationInsights.DataContracts.ExceptionDetailsInfo : int * int * string * string * bool * string * seq<Microsoft.ApplicationInsights.DataContracts.StackFrame> -> Microsoft.ApplicationInsights.DataContracts.ExceptionDetailsInfo
Public Sub New (id As Integer, outerId As Integer, typeName As String, message As String, hasFullStack As Boolean, stack As String, parsedStack As IEnumerable(Of StackFrame))

Parameters

id
Int32

Exception id.

outerId
Int32

Parent exception's id.

typeName
String

Type name for the exception.

message
String

Exception message.

hasFullStack
Boolean

Indicates that this exception has full stack information.

stack
String

Exception's stack trace.

parsedStack
IEnumerable<StackFrame>

Exception's stack.

Applies to