C # TCPListener,

Source: Internet
Author: User

C # TCPListener,

1: There are two areas where exception handling is required. The exception type is IOException.

When the server reads the information from the client:

LeafTCPClient client = (LeafTCPClient) ar. AsyncState;
Try
{

If (client. NetWork. Connected)
{
NetworkStream ns = client. NetWork. GetStream ();
Byte [] recdata = new byte [ns. EndRead (ar)]; // when a remote exception is disabled, an IOException occurs after this sentence is executed.

......

}

Catch (IOException ex)

{

MessageBox. Show (ex. Message, "Error", MessageBoxButtons. OK, MessageBoxIcon. Error );

}

When the remote client is abnormally disconnected (such as power-off), the server is reading the information sent from the client. If no exception is handled

When the server writes data to the client, if the client is disconnected unexpectedly

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.