TcpClient.Close Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Descarta essa instância de TcpClient e solicita que a conexão TCP subjacente seja fechada.
public:
void Close();
public void Close ();
member this.Close : unit -> unit
Public Sub Close ()
Exemplos
O exemplo de código a seguir demonstra o fechamento de um TcpClient chamando o Close
método .
#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();
}
}
}
Comentários
O Close
método marca a instância como descartada e solicita que o associado Socket feche a conexão TCP. Com base na LingerState propriedade , a conexão TCP pode permanecer aberta por algum tempo depois que o Close
método é chamado quando os dados permanecem para serem enviados. Não há nenhuma notificação fornecida quando a conexão subjacente tiver concluído o fechamento.
Chamar esse método eventualmente resultará no fechamento do associado Socket
e também fechará o associado NetworkStream que é usado para enviar e receber dados se um tiver sido criado.
Observação
Esse membro emite o rastreamento de informações quando você ativa o rastreamento de rede em seu aplicativo. Para obter mais informações, consulte Rastreamento de rede no .NET Framework.