当前位置:  开发笔记 > 编程语言 > 正文

使用SSL创建TCP客户端连接

如何解决《使用SSL创建TCP客户端连接》经验,为你挑选了1个好方法。

我正在尝试创建TCP连接并发送/读取使用SSL的数据,但我无法成功完成此操作.

我想做的是这样的事情:

    TcpClient _tcpClient = new TcpClient("host", 110);

    BinaryReader reader = 
       new BinaryReader(new System.Net.Security.SslStream(_tcpClient.GetStream(), true));

    Console.WriteLine(reader.ReadString());

我虽然没有运气.创建BinaryReader时抛出异常.

有谁知道这样做的一个简单例子?我不想写这个服务器端,只是客户端.



1> Ovidiu Pacur..:

BinaryReader将原始数据类型读取为特定编码中的二进制值,这是您的服务器发送的内容吗?
如果不使用StreamReader:

TcpClient _tcpClient = new TcpClient("host", 110);

StreamReader reader = 
   new StreamReader(new System.Net.Security.SslStream(_tcpClient.GetStream(), true));

Console.WriteLine(reader.ReadToEnd());

推荐阅读
linjiabin43
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有