using System; namespace Renci.SshNet.Common { /// /// Provides data for Shell DataReceived event. /// public class ShellDataEventArgs : EventArgs { /// /// Initializes a new instance of the class. /// /// The data. public ShellDataEventArgs(byte[] data) { Data = data; } /// /// Initializes a new instance of the class. /// /// The line. public ShellDataEventArgs(string line) { Line = line; } /// /// Gets the data. /// public byte[] Data { get; } /// /// Gets the line data. /// public string Line { get; } } }