SSH.NET based colored terminal emulator

前提是你 提交于 2019-11-28 12:31:50

When implementing a terminal emulation, you primarily have to process ANSI escape codes sent by the server.

There's no support for that in SSH.NET or .NET Framework.

Implementing it on your own is a huge task. PuTTY implementation of the terminal emulation, terminal.c, has over 6500 lines of code. And that's only a processing part, a drawing is separate.

Quick google search for "c# terminal emulation" results in:
https://github.com/munificent/malison-dotnet
(though I have no experience with this library)


The only part of this on SSH.NET side, is to request terminal emulation by using an overload of SshClient.CreateShell that takes terminalName argument (and its companions).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!