ServerStreamWebSocket.Close メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
Close() |
ServerStreamWebSocket を閉じ、空の閉じるフレームをサーバーに送信します。 |
Close(UInt16, String) |
ServerStreamWebSocket オブジェクトを閉じ、閉じる理由を示します。 |
Close()
ServerStreamWebSocket を閉じ、空の閉じるフレームをサーバーに送信します。
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)
ServerStreamWebSocket オブジェクトを閉じ、閉じる理由を示します。
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
|