ServerMessageWebSocket.Close 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Close() |
ServerMessageWebSocket 개체를 닫고 빈 닫기 프레임을 서버에 보냅니다. |
Close(UInt16, String) |
ServerMessageWebSocket 개체를 닫고 닫는 이유를 나타냅니다. |
Close()
ServerMessageWebSocket 개체를 닫고 빈 닫기 프레임을 서버에 보냅니다.
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
Windows 요구 사항
앱 기능 |
internetClientServer
privateNetworkClientServer
|
적용 대상
Close(UInt16, String)
ServerMessageWebSocket 개체를 닫고 닫는 이유를 나타냅니다.
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
닫는 이유를 나타내는 상태 코드입니다. 적절한 코드 목록은 IANA(인터넷 할당 번호 기관) WebSocket 프로토콜 레지스트리 에 있으며 MDN에도 설명되어 있습니다.
- reason
-
String
Platform::String
winrt::hstring
폐쇄에 대한 추가 정보가 포함된 선택적 UTF-8로 인코딩된 데이터입니다.
- 특성
Windows 요구 사항
앱 기능 |
internetClientServer
privateNetworkClientServer
|