| 1234567891011121314151617181920212223242526272829303132333435363738 | using System;namespace Renci.SshNet.Common{    /// <summary>    /// Provides data for Shell DataReceived event    /// </summary>    public class ShellDataEventArgs : EventArgs    {        /// <summary>        /// Gets the data.        /// </summary>        public byte[] Data { get; private set; }        /// <summary>        /// Gets the line data.        /// </summary>        public string Line { get; private set; }        /// <summary>        /// Initializes a new instance of the <see cref="ShellDataEventArgs"/> class.        /// </summary>        /// <param name="data">The data.</param>        public ShellDataEventArgs(byte[] data)        {            Data = data;        }        /// <summary>        /// Initializes a new instance of the <see cref="ShellDataEventArgs"/> class.        /// </summary>        /// <param name="line">The line.</param>        public ShellDataEventArgs(string line)        {            Line = line;        }    }}
 |