You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
651 B
C#

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