Class ShellDataEventArgs
- Namespace
- Renci.SshNet.Common
- Assembly
- Renci.SshNet.dll
Provides data for Shell DataReceived event.
public class ShellDataEventArgs : EventArgsInheritance
Inherited Members
Constructors
ShellDataEventArgs(byte[])
Initializes a new instance of the Renci.SshNet.Common.ShellDataEventArgs class.
public ShellDataEventArgs(byte[] data)Parameters
- databyte[]
- 
The data. 
ShellDataEventArgs(string)
Initializes a new instance of the Renci.SshNet.Common.ShellDataEventArgs class.
public ShellDataEventArgs(string line)Parameters
- linestring
- 
The line. 
Properties
Data
Gets the data.
public byte[] Data { get; }Property Value
- byte[]
Line
Gets the line data.
public string Line { get; }