Table of Contents

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

Type string

Specifies process type.

Id long

Specifies process id.

CpuTime double

Specifies 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

double

Id

Specifies process id.

public long Id { get; init; }

Property Value

long

Type

Specifies process type.

public string Type { get; init; }

Property Value

string