Skip to content
Snippets Groups Projects
Select Git revision
  • fd8aa43342d9eb6e451562e433d90fe0c0e2286c
  • 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

SetDiscoverTargetsCommand.cs

Blame
  • DevtoolsResponse.cs 531 B
    using Newtonsoft.Json.Linq;
    
    namespace bessw.Unity.WebView.ChromeDevTools.Protocol
    {
        public class DevtoolsResponseWrapper
        {
            public long Id { get; set; }
            public JObject Result { get; set; }
        }
        ///
        /// Every devtools command response has the same id and a method as the corresponding command
        ///
        public class DevtoolsResponseWrapper<T> : DevtoolsResponseWrapper where T : IDevtoolsResponse
        {
            public new T Result { get; set; }
        }
    
        public interface IDevtoolsResponse { }
    }