<PackageReference Include="SSH.NET" Version="2024.0.0" />

ShellRequestInfo

sealed class ShellRequestInfo : RequestInfo
Represents "shell" type channel request information.
namespace Renci.SshNet.Messages.Connection { internal sealed class ShellRequestInfo : RequestInfo { public const string Name = "shell"; public override string RequestName => "shell"; public ShellRequestInfo() { base.WantReply = true; } } }