Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
socket.EndSend() 返回发送的字节数。在哪些情况下 socket.BeginSend 不发送所有预期的字节?
如果一切顺利,永远不要:
当您的应用程序调用 BeginSend 时,系统将使用单独的线程来执行指定的回调方法,并在 EndSend 上阻塞,直到 Socket 发送请求的字节数或抛出异常。
如果发送时意外连接丢失,将引发异常。