Select Git revision
FactComparer.cs.meta
PausedEvent.cs 927 B
using MasterDevs.ChromeDevTools;
namespace MasterDevs.ChromeDevTools.Protocol.Debugger
{
/// <summary>
/// Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
/// </summary>
[Event(ProtocolName.Debugger.Paused)]
public class PausedEvent
{
/// <summary>
/// Gets or sets Call stack the virtual machine stopped on.
/// </summary>
public CallFrame[] CallFrames { get; set; }
/// <summary>
/// Gets or sets Pause reason.
/// </summary>
public string Reason { get; set; }
/// <summary>
/// Gets or sets Object containing break-specific auxiliary properties.
/// </summary>
public object Data { get; set; }
/// <summary>
/// Gets or sets Hit breakpoints IDs
/// </summary>
public string[] HitBreakpoints { get; set; }
/// <summary>
/// Gets or sets Async stack trace, if any.
/// </summary>
public StackTrace AsyncStackTrace { get; set; }
}
}