Class PausedEventArgs
Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
public sealed class PausedEventArgs : EventArgs
- Inheritance
-
PausedEventArgs
- Inherited Members
Properties
AsyncCallStackTraceId
Never present, will be removed.
[JsonPropertyName("asyncCallStackTraceId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StackTraceId? AsyncCallStackTraceId { get; set; }
Property Value
AsyncStackTrace
Async stack trace, if any.
[JsonPropertyName("asyncStackTrace")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StackTrace? AsyncStackTrace { get; set; }
Property Value
AsyncStackTraceId
Async stack trace, if any.
[JsonPropertyName("asyncStackTraceId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StackTraceId? AsyncStackTraceId { get; set; }
Property Value
CallFrames
Call stack the virtual machine stopped on.
[JsonPropertyName("callFrames")]
public CallFrame[] CallFrames { get; set; }
Property Value
Data
Object containing break-specific auxiliary properties.
[JsonPropertyName("data")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public object? Data { get; set; }
Property Value
HitBreakpoints
Hit breakpoints IDs
[JsonPropertyName("hitBreakpoints")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string[]? HitBreakpoints { get; set; }
Property Value
- string[]
Reason
Pause reason.
[JsonPropertyName("reason")]
public string Reason { get; set; }