Unable to read data from the transport connection: A blocking operation was interrupted by a call to WSACancelBlockingCall

后端 未结 2 1542
迷失自我
迷失自我 2021-01-14 15:35

I am developing a client-server chat application and I have encountered the following exception when I close the client window.

Unable to read data from the transpor

2条回答
  •  一个人的身影
    2021-01-14 15:52

    after all .Close(); calls, also close threads that call these readers/writers. Like in this similar code under discussion, the problem can be solved by simply adding .Abort(); in two places where .Close(); for streams are called:

                swSender.Close();
                srReceiver.Close();
                tcpServer.Close();
                thrMessaging.Abort(); // this needed to be added to solve the problem
    

提交回复
热议问题