Movatterモバイル変換


[0]ホーム

URL:


MDN Web Docs

CloseEvent: code property

BaselineWidely available

Note: This feature is available inWeb Workers.

Thecode read-only property of theCloseEvent interface returns aWebSocket connection close code indicating the reason the connection was closed.

Value

An integerWebSocket connection close code in the range1000 -4999, indicating the reason the connection was closed.

Status codeMeaningDescription
0999Not used.
1000Normal Closure The connection successfully completed the purpose for which it was created.
1001Going Away The endpoint is going away, either because of a server failure or because the browser is navigating away from the page that opened the connection.
1002Protocol error The endpoint is terminating the connection due to a protocol error.
1003Unsupported Data The connection is being terminated because the endpoint received data of a type it cannot accept. (For example, a text-only endpoint received binary data.)
1004ReservedReserved. A meaning might be defined in the future.
1005No Status ReceivedReserved. Indicates that no status code was provided even though one was expected.
1006Abnormal ClosureReserved. Indicates that a connection was closed abnormally (that is, with no close frame being sent) when a status code is expected.
1007Invalid frame payload data The endpoint is terminating the connection because a message was received that contained inconsistent data (e.g., non-UTF-8 data within a text message).
1008Policy Violation The endpoint is terminating the connection because it received a message that violates its policy. This is a generic status code, used when codes 1003 and 1009 are not suitable.
1009Message Too Big The endpoint is terminating the connection because a data frame was received that is too large.
1010Mandatory Ext. The client is terminating the connection because it expected the server to negotiate one or more extension, but the server didn't.
1011Internal Error The server is terminating the connection because it encountered an unexpected condition that prevented it from fulfilling the request.
1012Service Restart The server is terminating the connection because it is restarting.
1013Try Again Later The server is terminating the connection due to a temporary condition, e.g., it is overloaded and is casting off some of its clients.
1014Bad Gateway The server was acting as a gateway or proxy and received an invalid response from the upstream server. This is similar to 502 HTTP Status Code.
1015TLS handshakeReserved. Indicates that the connection was closed due to a failure to perform a TLS handshake (e.g., the server certificate can't be verified).
10162999 For definition by future revisions of the WebSocket Protocol specification, and for definition by extension specifications.
30003999 For use by libraries, frameworks, and applications. These status codes areregistered directly with IANA. The interpretation of these codes is undefined by the WebSocket protocol.
40004999 For private use, and thus can't be registered. Such codes can be used by prior agreements between WebSocket applications. The interpretation of these codes is undefined by the WebSocket protocol.

Examples

The following example prints the value ofcode to the console.

js
WebSocket.onclose = (event) => {  console.log(event.code);};

Specifications

Specification
WebSockets
# ref-for-dom-closeevent-code②

Browser compatibility

See also

Help improve MDN

Learn how to contribute.

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp