-
Frederik Carlier authored
Add support for iOS devices. Create separate namespaces for the Chrome and iOS versions of the WebKit debugger protocol.
Frederik Carlier authoredAdd support for iOS devices. Create separate namespaces for the Chrome and iOS versions of the WebKit debugger protocol.
SetAsyncOperationBreakpointCommandResponse.cs 402 B
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Debugger
{
/// <summary>
/// Sets breakpoint on AsyncOperation callback handler.
/// </summary>
[CommandResponse(ProtocolName.Debugger.SetAsyncOperationBreakpoint)]
[SupportedBy("Chrome")]
public class SetAsyncOperationBreakpointCommandResponse
{
}
}