Renci.SshNet.Messages.Connection.WindowChangeRequestInfo
Represents "window-change" type channel request information.
namespace Renci.SshNet.Messages.Connection
{
internal sealed class WindowChangeRequestInfo : RequestInfo
{
public const string Name = "window-change";
public uint Columns { get; }
public uint Rows { get; }
public uint Width { get; }
public uint Height { get; }
public WindowChangeRequestInfo();
public WindowChangeRequestInfo(uint columns, uint rows, uint width, uint height);
}
}