TcpClient.Close 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 TcpClient 인스턴스를 삭제하고 내부 TCP 연결을 닫도록 요청합니다.
public:
void Close();
public void Close ();
member this.Close : unit -> unit
Public Sub Close ()
예제
다음 코드 예제에서는 메서드를 호출하여 를 TcpClient 닫는 방법을 Close
보여 줍니다.
#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();
}
}
}
설명
메서드는 Close
instance 삭제된 것으로 표시하고 연결된 Socket 가 TCP 연결을 닫을 것을 요청합니다. 속성에 LingerState 따라 데이터를 전송할 때 메서드가 호출된 후 Close
TCP 연결이 일정 시간 동안 열려 있을 수 있습니다. 기본 연결이 닫히는 동안에는 알림이 제공되지 않습니다.
이 메서드를 호출하면 결국 연결된 Socket
가 닫히게 되며, 생성된 경우 데이터를 보내고 받는 데 사용되는 연결된 NetworkStream 을 닫습니다.
참고
애플리케이션에 네트워크 추적을 사용하도록 설정하면 이 멤버에서 추적 정보를 출력합니다. 자세한 내용은 .NET Framework 네트워크 추적을 참조하세요.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET