Class StackTrace
Call frames for assertions or error messages.
public sealed class StackTrace
- Inheritance
-
StackTrace
- Inherited Members
Properties
CallFrames
JavaScript function name.
[JsonPropertyName("callFrames")]
public CallFrame[] CallFrames { get; set; }
Property Value
Description
String label of this stack trace. For async traces this may be a name of the function that initiated the async call.
[JsonPropertyName("description")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Description { get; set; }
Property Value
Parent
Asynchronous JavaScript stack trace that preceded this stack, if available.
[JsonPropertyName("parent")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StackTrace? Parent { get; set; }
Property Value
ParentId
Asynchronous JavaScript stack trace that preceded this stack, if available.
[JsonPropertyName("parentId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StackTraceId? ParentId { get; set; }