using System; using Renci.SshNet.Messages.Connection; namespace Renci.SshNet.Common { /// /// Provides data for event. /// internal class ChannelRequestEventArgs : EventArgs { /// /// Gets request information. /// public RequestInfo Info { get; private set; } /// /// Initializes a new instance of the class. /// /// Request information. public ChannelRequestEventArgs(RequestInfo info) { Info = info; } } }