다음을 통해 공유


StreamWebSocket.Close 메서드

정의

오버로드

Close()

StreamWebSocket을 닫고 빈 닫기 프레임을 서버에 보냅니다.

Close(UInt16, String)

StreamWebSocket을 닫고 닫는 이유를 나타냅니다.

Close()

StreamWebSocket을 닫고 빈 닫기 프레임을 서버에 보냅니다.

public:
 virtual void Close() = Close;
void Close();
// This member is not implemented in C#
function close()
' This member is not implemented in VB.NET

구현

M:Windows.Foundation.IClosable.Close M:System.IDisposable.Close

설명

Close 메서드는 JavaScript를 사용하여 Windows 앱에서 사용됩니다. C# 및 VB.NET .NET Framework 4.5를 사용하여 작성된 앱의 경우 Close 메서드는 StreamWebSocket의 메서드로 노출됩니다. C++로 작성된 앱의 경우 개체에서 삭제 키워드(keyword) 사용할 때 Close 메서드가 호출됩니다.

추가 정보

적용 대상

Close(UInt16, String)

StreamWebSocket을 닫고 닫는 이유를 나타냅니다.

public:
 virtual void Close(unsigned short code, Platform::String ^ reason) = Close;
/// [Windows.Foundation.Metadata.Overload("CloseWithStatus")]
void Close(uint16_t const& code, winrt::hstring const& reason);
[Windows.Foundation.Metadata.Overload("CloseWithStatus")]
public void Close(ushort code, string reason);
function close(code, reason)
Public Sub Close (code As UShort, reason As String)

매개 변수

code
UInt16

unsigned short

uint16_t

닫는 이유를 나타내는 상태 코드입니다.

reason
String

Platform::String

winrt::hstring

폐쇄에 대한 추가 정보가 포함된 선택적 UTF-8로 인코딩된 데이터입니다.

구현

M:Windows.Networking.Sockets.IWebSocket.Close(System.UInt16,System.String) M:Windows.Networking.Sockets.IWebSocket.Close(unsigned short,Platform::String) M:Windows.Networking.Sockets.IWebSocket.Close(uint16_t,winrt::hstring)
특성

추가 정보

적용 대상