Skip to content
Snippets Groups Projects
DevtoolsResponse.cs 531 B
Newer Older
  • Learn to ignore specific revisions
  • using Newtonsoft.Json.Linq;
    
    
    namespace bessw.Unity.WebView.ChromeDevTools.Protocol
    
            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; }