Table of Contents

Class GetVersionResult

Namespace
Selenium.WebDriver.BiDi.Cdp.Browser
Assembly
Selenium.WebDriver.BiDi.Cdp.dll
public sealed record GetVersionResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetVersionResult>
Inheritance
EmptyResult
GetVersionResult
Implements
IEquatable<EmptyResult>
Inherited Members
EmptyResult.ToString()
EmptyResult.GetHashCode()
EmptyResult.Equals(EmptyResult)
EmptyResult.<Clone>$()
EmptyResult.AdditionalData
EmptyResult.AdditionalMessageData

Constructors

GetVersionResult(string, string, string, string, string)

public GetVersionResult(string ProtocolVersion, string Product, string Revision, string UserAgent, string JsVersion)

Parameters

ProtocolVersion string

Protocol version.

Product string

Product name.

Revision string

Product revision.

UserAgent string

User-Agent.

JsVersion string

V8 version.

Properties

JsVersion

V8 version.

public string JsVersion { get; init; }

Property Value

string

Product

Product name.

public string Product { get; init; }

Property Value

string

ProtocolVersion

Protocol version.

public string ProtocolVersion { get; init; }

Property Value

string

Revision

Product revision.

public string Revision { get; init; }

Property Value

string

UserAgent

User-Agent.

public string UserAgent { get; init; }

Property Value

string