Skip to content
Snippets Groups Projects
Unverified Commit b9411cd8 authored by Kevin Prudente's avatar Kevin Prudente Committed by GitHub
Browse files

Merge pull request #30 from MasterDevs/revert-29-revert-24-protocol_62

Revert "Revert "new protocol (chrome 62)""
parents b2c2cb82 70bbe1c6
No related branches found
No related tags found
No related merge requests found
Showing
with 97 additions and 3 deletions
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Audits
{
/// <summary>
/// Returns the response body and size if it were re-encoded with the specified settings. Only applies to images.
/// </summary>
[CommandResponse(ProtocolName.Audits.GetEncodedResponse)]
[SupportedBy("Chrome")]
public class GetEncodedResponseCommandResponse
{
/// <summary>
/// Gets or sets The encoded body as a base64 string. Omitted if sizeOnly is true.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string Body { get; set; }
/// <summary>
/// Gets or sets Size before re-encoding.
/// </summary>
public long OriginalSize { get; set; }
/// <summary>
/// Gets or sets Size after re-encoding.
/// </summary>
public long EncodedSize { get; set; }
}
}
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Security
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Browser
{
/// <summary>
/// Displays native dialog with the certificate details.
/// Returns version information.
/// </summary>
[CommandResponse(ProtocolName.Security.ShowCertificateViewer)]
[Command(ProtocolName.Browser.GetVersion)]
[SupportedBy("Chrome")]
public class ShowCertificateViewerCommandResponse
public class GetVersionCommand: ICommand<GetVersionCommandResponse>
{
}
}
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Browser
{
/// <summary>
/// Returns version information.
/// </summary>
[CommandResponse(ProtocolName.Browser.GetVersion)]
[SupportedBy("Chrome")]
public class GetVersionCommandResponse
{
/// <summary>
/// Gets or sets Protocol version.
/// </summary>
public string ProtocolVersion { get; set; }
/// <summary>
/// Gets or sets Product name.
/// </summary>
public string Product { get; set; }
/// <summary>
/// Gets or sets Product revision.
/// </summary>
public string Revision { get; set; }
/// <summary>
/// Gets or sets User-Agent.
/// </summary>
public string UserAgent { get; set; }
/// <summary>
/// Gets or sets V8 version.
/// </summary>
public string JsVersion { get; set; }
}
}
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Browser
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Browser
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Browser
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Browser
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Browser
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.Browser
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.CSS
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.CSS
......
......@@ -4,9 +4,6 @@ using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.CSS
{
/// <summary>
///
/// </summary>
[SupportedBy("Chrome")]
public class CSSComputedStyleProperty
{
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.CSS
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.CSS
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.CSS
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.CSS
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.CSS
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.CSS
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.CSS
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace MasterDevs.ChromeDevTools.Protocol.Chrome.CSS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment