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

Renci.SshNet.Messages.Connection.X11ForwardingRequestInfo

Represents "x11-req" type channel request information
namespace Renci.SshNet.Messages.Connection { internal class X11ForwardingRequestInfo : RequestInfo { public const string Name = "x11-req"; public bool IsSingleConnection { get; set; } public string AuthenticationProtocol { get; } public byte[] AuthenticationCookie { get; set; } public uint ScreenNumber { get; set; } public X11ForwardingRequestInfo(); public X11ForwardingRequestInfo(bool isSingleConnection, string protocol, byte[] cookie, uint screenNumber); } }