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

LoadingFinishedResponse.cs

Blame
  • user avatar
    brewdente authored
    right now, with more work ahead.  This is just a checkpoint.
    51679b6c
    History
    LoadingFinishedResponse.cs 601 B
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    
    namespace AutoWebPerf.Chrome.Messages.Network
    {
    
        [MethodName(MethodName.Network.LoadingFinished)]
        public class LoadingFinishedResponse : IResponse
        {
            public string method { get; set; }
            public LoadingFinishedResponseParams Params { get; set; }
        }
    
        public class LoadingFinishedResponseParams
        {
            public string requestId { get; set; }
            public float timestamp { get; set; }
            public int encodedDataLength { get; set; }
        }
    
    }