using System; namespace Renci.SshNet.Common { /// /// Base class for all channel related events. /// internal class ChannelEventArgs : EventArgs { /// /// Gets the channel number. /// public uint ChannelNumber { get; private set; } /// /// Initializes a new instance of the class. /// /// The channel number. public ChannelEventArgs(uint channelNumber) { ChannelNumber = channelNumber; } } }