Class DriverProcessStartedEventArgs
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
Exceptions
- ArgumentNullException
If
driverProcess
is null.
Properties
ProcessId
Gets the unique ID of the driver executable process.
public int ProcessId { get; }
Property Value
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
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; }