Table of Contents

Class GetInfoResult

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

Constructors

GetInfoResult(GPUInfo, string, string, string)

public GetInfoResult(GPUInfo Gpu, string ModelName, string ModelVersion, string CommandLine)

Parameters

Gpu GPUInfo

Information about the GPUs on the system.

ModelName string

A platform-dependent description of the model of the machine. On Mac OS, this is, for example, 'MacBookPro'. Will be the empty string if not supported.

ModelVersion string

A platform-dependent description of the version of the machine. On Mac OS, this is, for example, '10.1'. Will be the empty string if not supported.

CommandLine string

The command line string used to launch the browser. Will be the empty string if not supported.

Properties

CommandLine

The command line string used to launch the browser. Will be the empty string if not supported.

public string CommandLine { get; init; }

Property Value

string

Gpu

Information about the GPUs on the system.

public GPUInfo Gpu { get; init; }

Property Value

GPUInfo

ModelName

A platform-dependent description of the model of the machine. On Mac OS, this is, for example, 'MacBookPro'. Will be the empty string if not supported.

public string ModelName { get; init; }

Property Value

string

ModelVersion

A platform-dependent description of the version of the machine. On Mac OS, this is, for example, '10.1'. Will be the empty string if not supported.

public string ModelVersion { get; init; }

Property Value

string