Class GetInfoResult
- Namespace
- Selenium.WebDriver.BiDi.Cdp.SystemInfo
- Assembly
- Selenium.WebDriver.BiDi.Cdp.dll
public sealed record GetInfoResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetInfoResult>
- Inheritance
-
EmptyResultGetInfoResult
- Implements
-
IEquatable<EmptyResult>
- Inherited Members
-
EmptyResult.ToString()EmptyResult.GetHashCode()EmptyResult.Equals(EmptyResult)EmptyResult.<Clone>$()EmptyResult.AdditionalDataEmptyResult.AdditionalMessageData
Constructors
GetInfoResult(GPUInfo, string, string, string)
public GetInfoResult(GPUInfo Gpu, string ModelName, string ModelVersion, string CommandLine)
Parameters
GpuGPUInfoInformation about the GPUs on the system.
ModelNamestringA 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.
ModelVersionstringA 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.
CommandLinestringThe 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
Gpu
Information about the GPUs on the system.
public GPUInfo Gpu { get; init; }
Property Value
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
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; }