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