Skip to content
Snippets Groups Projects
Select Git revision
  • 379098f0e172c4aa9a373ac6e249b7e63a6aac52
  • master default
  • dependabot/nuget/source/Sample/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/MasterDevs.ChromeDevTools.Tests/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/ProtocolGenerator/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/ChromeDevTools/Newtonsoft.Json-13.0.1
  • dependabot/nuget/source/ChromeDevTools/System.Net.Http-4.3.4
  • revert-29-revert-24-protocol_62
  • revert-24-protocol_62
  • 1.1.0
  • 1.0.2
  • 1.0.1
  • 1.0.0.40915
13 results

PausedEvent.cs

Blame
  • 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; }
    	}
    }