什么是好的 Telnet 客户端 C# 实现?
什么是一个好的 C# 开源 Telnet 客户端实现,它可以在封闭代码中使用(即不在 GPL 下)?
波阿斯
What would be a good open source Telnet client implementation in C#, which can be used in close code (i.e., not under GPL)?
Boaz
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我发现的最好的 C# Telnet Lib 称为 Minimalistic Telnet。 非常容易理解、使用和修改。 它非常适合我需要配置的思科路由器。
http://www.codeproject.com/KB/IP/MinimalisticTelnet.aspx
Best C# Telnet Lib I've found is called Minimalistic Telnet. Very easy to understand, use and modify. It works great for the Cisco routers I need to configure.
http://www.codeproject.com/KB/IP/MinimalisticTelnet.aspx
波阿斯,你应该能够很容易地想出你自己的。 您需要做的就是创建一个控制台应用程序,了解参数的工作原理,查找有关如何使用 TcpClient 类的教程,然后您就成功了。
编辑:
我现在明白了。 我正在考虑最基本类型的 telnet 客户端。 我认为您无法找到支持 vt100、vt52 和 vtnt 的 telnet 客户端的免费源代码。
Boaz you should be able to come up with your own rather easily. All you need to do is create a console application, learn how parameters work, look for is a tutorial on how to use the TcpClient class and you're golden.
EDIT:
I understand now. I was thinking of the most basic type of telnet client. I don't think you'll be able to find free source code for a telnet client with vt100, vt52 and vtnt support.