Condividi tramite


MessageWebSocket.Close Metodo

Definizione

Overload

Close()

Chiude l'oggetto MessageWebSocket e invia un frame di chiusura vuoto al server.

Close(UInt16, String)

Chiude l'oggetto MessageWebSocket e indica un motivo per la chiusura.

Close()

Chiude l'oggetto MessageWebSocket e invia un frame di chiusura vuoto al server.

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

Implementazioni

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

Commenti

Il metodo Close viene usato dall'app Windows usando JavaScript. Per le app scritte usando .NET Framework 4.5 in C# e VB.NET, il metodo Close viene esposto come metodo nel MessageWebSocket. Per le app scritte in C++, il metodo Close verrà chiamato quando si usa la parola chiave delete nell'oggetto.

Vedi anche

Si applica a

Close(UInt16, String)

Chiude l'oggetto MessageWebSocket e indica un motivo per la chiusura.

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)

Parametri

code
UInt16

unsigned short

uint16_t

Codice di stato che indica il motivo della chiusura. L'elenco dei codici appropriati è presente nel Registro di sistema del protocollo WebSocket IANA (Internet Assigned Numbers Authority) ed è documentato anche su MDN.

reason
String

Platform::String

winrt::hstring

Dati con codifica UTF-8 facoltativi con informazioni aggiuntive sulla chiusura.

Implementazioni

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)
Attributi

Vedi anche

Si applica a