TcpClient.Close Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Disposes this TcpClient instance and requests that the underlying TCP connection be closed.
public:
void Close();
public void Close ();
member this.Close : unit -> unit
Public Sub Close ()
Examples
The following code example demonstrates closing a TcpClient by calling the Close
method.
#using <System.dll>
using namespace System;
using namespace System::Text;
using namespace System::Net;
using namespace System::Net::Sockets;
int main()
{
// Create a client that will connect to a
// server listening on the contoso1 computer
// at port 11000.
TcpClient^ tcpClient = gcnew TcpClient;
tcpClient->Connect( "contosoServer", 11000 );
// Get the stream used to read the message sent by the server.
NetworkStream^ networkStream = tcpClient->GetStream();
// Set a 10 millisecond timeout for reading.
networkStream->ReadTimeout = 10;
// Read the server message into a byte buffer.
array<Byte>^bytes = gcnew array<Byte>(1024);
networkStream->Read( bytes, 0, 1024 );
//Convert the server's message into a string and display it.
String^ data = Encoding::UTF8->GetString( bytes );
Console::WriteLine( "Server sent message: {0}", data );
networkStream->Close();
tcpClient->Close();
}
using System;
using System.Text;
using System.Net;
using System.Net.Sockets;
namespace Examples.System.Net
{
public class TCPClientExample
{
public static void Main()
{
// Create a client that will connect to a
// server listening on the contosoServer computer
// at port 11000.
TcpClient tcpClient = new TcpClient();
tcpClient.Connect("contosoServer", 11000);
// Get the stream used to read the message sent by the server.
NetworkStream networkStream = tcpClient.GetStream();
// Set a 10 millisecond timeout for reading.
networkStream.ReadTimeout = 10;
// Read the server message into a byte buffer.
byte[] bytes = new byte[1024];
networkStream.Read(bytes, 0, 1024);
//Convert the server's message into a string and display it.
string data = Encoding.UTF8.GetString(bytes);
Console.WriteLine("Server sent message: {0}", data);
networkStream.Close();
tcpClient.Close();
}
}
}
Remarks
The Close
method marks the instance as disposed and requests that the associated Socket close the TCP connection. Based on the LingerState property, the TCP connection may stay open for some time after the Close
method is called when data remains to be sent. There is no notification provided when the underlying connection has completed closing.
Calling this method will eventually result in the close of the associated Socket
and will also close the associated NetworkStream that is used to send and receive data if one was created.
Note
This member outputs trace information when you enable network tracing in your application. For more information, see Network Tracing in the .NET Framework.