Class ProcessInfo
- Namespace
- Selenium.WebDriver.BiDi.Cdp.SystemInfo
- Assembly
- Selenium.WebDriver.BiDi.Cdp.dll
Represents process info.
public sealed record ProcessInfo : IEquatable<ProcessInfo>
- Inheritance
-
ProcessInfo
- Implements
- Inherited Members
Constructors
ProcessInfo(string, long, double)
Represents process info.
public ProcessInfo(string Type, long Id, double CpuTime)
Parameters
TypestringSpecifies process type.
IdlongSpecifies process id.
CpuTimedoubleSpecifies cumulative CPU usage in seconds across all threads of the process since the process start.
Properties
CpuTime
Specifies cumulative CPU usage in seconds across all threads of the process since the process start.
public double CpuTime { get; init; }
Property Value
Id
Specifies process id.
public long Id { get; init; }
Property Value
Type
Specifies process type.
public string Type { get; init; }