Skip to content
Snippets Groups Projects
Commit bbd82b04 authored by Frederik Carlier's avatar Frederik Carlier
Browse files

Update protocol

parent ba9d7ff6
No related branches found
No related tags found
No related merge requests found
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime.Serialization;
namespace MasterDevs.ChromeDevTools.Protocol.iOS.Page{
/// <summary>
/// Coordinate system used by supplied coordinates.
/// </summary>
[JsonConverter(typeof(StringEnumConverter))]
public enum CoordinateSystem
{
Viewport,
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime.Serialization;
namespace MasterDevs.ChromeDevTools.Protocol.iOS.Page{
/// <summary>
/// Resource type as it was perceived by the rendering engine.
/// </summary>
[JsonConverter(typeof(StringEnumConverter))]
public enum ResourceType
{
Document,
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime.Serialization;
namespace MasterDevs.ChromeDevTools.Protocol.iOS.Runtime{
/// <summary>
/// Syntax error type: "none" for no error, "irrecoverable" for unrecoverable errors, "unterminated-literal" for when there is an unterminated literal, "recoverable" for when the expression is unfinished but valid so far.
/// </summary>
[JsonConverter(typeof(StringEnumConverter))]
public enum SyntaxErrorType
{
None,
Irrecoverable,
[EnumMember(Value = "unterminated-literal")]
Unterminated_literal,
Recoverable,
}
......
using MasterDevs.ChromeDevTools;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System.Runtime.Serialization;
namespace MasterDevs.ChromeDevTools.Protocol.iOS.Timeline{
/// <summary>
/// Timeline record type.
/// </summary>
[JsonConverter(typeof(StringEnumConverter))]
public enum EventType
{
EventDispatch,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment