Class GPUDevice
- Namespace
- OpenQA.Selenium.DevTools.V147.SystemInfo
- Assembly
- Selenium.WebDriver.dll
Describes a single graphics processor (GPU).
public sealed class GPUDevice
- Inheritance
-
GPUDevice
- Inherited Members
Properties
DeviceId
PCI ID of the GPU device, if available; 0 otherwise.
[JsonPropertyName("deviceId")]
public double DeviceId { get; set; }
Property Value
DeviceString
String description of the GPU device, if the PCI ID is not available.
[JsonPropertyName("deviceString")]
public string DeviceString { get; set; }
Property Value
DriverVendor
String description of the GPU driver vendor.
[JsonPropertyName("driverVendor")]
public string DriverVendor { get; set; }
Property Value
DriverVersion
String description of the GPU driver version.
[JsonPropertyName("driverVersion")]
public string DriverVersion { get; set; }
Property Value
Revision
Revision of the GPU, only available on Windows.
[JsonPropertyName("revision")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public double? Revision { get; set; }
Property Value
SubSysId
Sub sys ID of the GPU, only available on Windows.
[JsonPropertyName("subSysId")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public double? SubSysId { get; set; }
Property Value
VendorId
PCI ID of the GPU vendor, if available; 0 otherwise.
[JsonPropertyName("vendorId")]
public double VendorId { get; set; }
Property Value
VendorString
String description of the GPU vendor, if the PCI ID is not available.
[JsonPropertyName("vendorString")]
public string VendorString { get; set; }