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

ShellRequestInfo

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