:-) 사전에
감사 : 문제를 해결
/// <summary>
/// Sends a "window-change" request.
/// </summary>
/// <param name="columns">The terminal width in columns.</param>
/// <param name="rows">The terminal width in rows.</param>
/// <param name="width">The terminal height in pixels.</param>
/// <param name="height">The terminal height in pixels.</param>
public void SendWindowChangeRequest(uint columns, uint rows, uint width, uint height)
{
if (_channel == null)
{
throw new ObjectDisposedException("ShellStream");
}
_channel.SendWindowChangeRequest(columns, rows, width, height);
}
. 이제 "SendWindowChangeRequest (...)"를 호출 할 수 있으며 서버 측 쉘 창은 최신입니다 .-)
Renci의 구현에서이 기능이없는 이유는 확실하지 않습니다. 어쩌면 또 다른 방법이있을 것입니다 ...