Skip to content
Snippets Groups Projects
Select Git revision
  • d7e3ead07568bb93000001ad2d53d119a8dd48aa
  • master default
  • JS-based-scroll-rendering
  • Paul_Marius_Level
  • Paul_Marius_2
  • Paul_Marius
  • Andi_Mark
  • be-UnityWebView
  • gitignoreFrameitServer
  • ZimmerBSc
  • Bugfix_StageLoading
  • stages
  • MAZIFAU_Experimental
  • tsc/coneworld
  • tsc/fact-interaction
  • marcel
  • MaZiFAU_TopSort
  • mergeHelper
  • zwischenSpeichern
  • tempAndrToMaster
  • SebBranch
  • 3.0
  • v2.1
  • v2.0
  • v1.0
25 results

FactComparer.cs.meta

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