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

FactSpawner.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 { }
    }