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

注解

使用 JavaScript 的 Windows 应用使用 Close 方法。 对于使用 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)
属性

另请参阅

适用于