MessageWebSocket.Close 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Close() |
關閉 MessageWebSocket 物件,並將空的關閉框架傳送至伺服器。 |
Close(UInt16, String) |
關閉 MessageWebSocket 物件,並指出關閉的原因。 |
Close()
關閉 MessageWebSocket 物件,並將空的關閉框架傳送至伺服器。
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
備註
使用 JavaScript 的 Windows 應用程式會使用 Close 方法。 對於使用 C# 和 VB.NET .NET Framework 4.5 撰寫的應用程式,Close 方法會公開為MessageWebSocket上的 方法。 針對以 C++ 撰寫的應用程式,會在物件上使用 delete 關鍵字時呼叫 Close 方法。
另請參閱
適用於
Close(UInt16, String)
關閉 MessageWebSocket 物件,並指出關閉的原因。
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 編碼資料,以及有關關閉的其他資訊。
實作
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)
- 屬性