Skip to content
Snippets Groups Projects
SetXHRBreakpointCommand.cs 496 B
Newer Older
  • Learn to ignore specific revisions
  • using MasterDevs.ChromeDevTools;
    using Newtonsoft.Json;
    using System.Collections.Generic;
    
    namespace MasterDevs.ChromeDevTools.Protocol.DOMDebugger
    {
    	/// <summary>
    	/// Sets breakpoint on XMLHttpRequest.
    	/// </summary>
    	[Command(ProtocolName.DOMDebugger.SetXHRBreakpoint)]
    	public class SetXHRBreakpointCommand
    	{
    		/// <summary>
    		/// Gets or sets Resource URL substring. All XHRs having this substring in the URL will get stopped upon.
    		/// </summary>
    		public string Url { get; set; }
    	}
    }