Class GetVersionResult
public sealed record GetVersionResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetVersionResult>
- Inheritance
-
EmptyResultGetVersionResult
- Implements
-
IEquatable<EmptyResult>
- Inherited Members
-
EmptyResult.ToString()EmptyResult.GetHashCode()EmptyResult.Equals(EmptyResult)EmptyResult.<Clone>$()EmptyResult.AdditionalDataEmptyResult.AdditionalMessageData
Constructors
GetVersionResult(string, string, string, string, string)
public GetVersionResult(string ProtocolVersion, string Product, string Revision, string UserAgent, string JsVersion)
Parameters
ProtocolVersionstringProtocol version.
ProductstringProduct name.
RevisionstringProduct revision.
UserAgentstringUser-Agent.
JsVersionstringV8 version.
Properties
JsVersion
V8 version.
public string JsVersion { get; init; }
Property Value
Product
Product name.
public string Product { get; init; }
Property Value
ProtocolVersion
Protocol version.
public string ProtocolVersion { get; init; }
Property Value
Revision
Product revision.
public string Revision { get; init; }
Property Value
UserAgent
User-Agent.
public string UserAgent { get; init; }