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.

26 lines
725 B
C#

using System;
using Renci.SshNet.Messages.Connection;
namespace Renci.SshNet.Common
{
/// <summary>
/// Provides data for <see cref="Renci.SshNet.Channels.Channel.RequestReceived"/> event.
/// </summary>
internal class ChannelRequestEventArgs : EventArgs
{
/// <summary>
/// Gets request information.
/// </summary>
public RequestInfo Info { get; private set; }
/// <summary>
/// Initializes a new instance of the <see cref="ChannelRequestEventArgs"/> class.
/// </summary>
/// <param name="info">Request information.</param>
public ChannelRequestEventArgs(RequestInfo info)
{
Info = info;
}
}
}