我正在尝试创建一个 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 时引发异常。
有谁知道这样做的一个简单例子?我对编写服务器端不感兴趣,只是客户端。