Class ShellDataEventArgs
Provides data for Shell DataReceived event.
public class ShellDataEventArgs : EventArgs
- Inheritance
-
ShellDataEventArgs
- Inherited Members
Constructors
ShellDataEventArgs(byte[])
Initializes a new instance of the ShellDataEventArgs class.
public ShellDataEventArgs(byte[] data)
Parameters
data
byte[]The data.
ShellDataEventArgs(string)
Initializes a new instance of the ShellDataEventArgs class.
public ShellDataEventArgs(string line)
Parameters
line
stringThe line.
Properties
Data
Gets the data.
public byte[] Data { get; }
Property Value
- byte[]
Line
Gets the line data.
public string Line { get; }