TcpClient.Client.Send和TcpClient.GetStream.Write是否等效?

问题描述

使用System.Net.sockets.TcpClient,似乎可以通过两种方式通过活动连接发送数据:

' endPoint is assigned prevIoUsly
Dim a as New System.Net.sockets.TcpClient()
a.Connect(endPoint)
Dim b as System.Net.sockets.NetworkStream
b = a.GetStream()
b.Write(bytes,bytes.Length)

' endPoint is assigned prevIoUsly
Dim a as New System.Net.sockets.TcpClient()
a.Connect(endPoint)
a.Client.Send(bytes)

其中一个是否具有另一个不适合的用例?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)