namespace Renci.SshNet.Messages.Connection { /// /// Represents "shell" type channel request information /// internal class ShellRequestInfo : RequestInfo { /// /// Channel request name /// public const string Name = "shell"; /// /// Gets the name of the request. /// /// /// The name of the request. /// public override string RequestName { get { return Name; } } /// /// Initializes a new instance of the class. /// public ShellRequestInfo() { WantReply = true; } } }