Table of Contents

Class DriverProcessStartedEventArgs

Namespace
OpenQA.Selenium
Assembly
WebDriver.dll

Provides data for the DriverProcessStarted event of a DriverService object.

public class DriverProcessStartedEventArgs : EventArgs
Inheritance
DriverProcessStartedEventArgs
Inherited Members

Constructors

DriverProcessStartedEventArgs(Process)

Initializes a new instance of the DriverProcessStartingEventArgs class.

public DriverProcessStartedEventArgs(Process driverProcess)

Parameters

driverProcess Process

The Process object started.

Exceptions

ArgumentNullException

If driverProcess is null.

Properties

ProcessId

Gets the unique ID of the driver executable process.

public int ProcessId { get; }

Property Value

int

StandardErrorStreamReader

Gets a StreamReader object that can be used to read the contents printed to stderr by a driver service process.

public StreamReader? StandardErrorStreamReader { get; }

Property Value

StreamReader

StandardOutputStreamReader

Gets a StreamReader object that can be used to read the contents printed to stdout by a driver service process.

public StreamReader? StandardOutputStreamReader { get; }

Property Value

StreamReader