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