Lines Matching defs:close
32 close: null,
146 * @see https://websockets.spec.whatwg.org/#dom-websocket-close
150 close (code = undefined, reason = undefined) {
284 // the user agent must flag the WebSocket as full and then close
304 // the WebSocket as full and then close the WebSocket connection.
325 // WebSocket as full and then close the WebSocket connection. The
347 // WebSocket as full and then close the WebSocket connection. The data
445 return this.#events.close
451 if (this.#events.close) {
452 this.removeEventListener('close', this.#events.close)
456 this.#events.close = fn
457 this.addEventListener('close', fn)
459 this.#events.close = null
562 close: kEnumerableProperty,