IBrowserWebSocket interface

HTML Living Standard の WebSocket を部分的に表します。 詳細については、https://html.spec.whatwg.org/multipage/web-sockets.htmlを参照してください。 このインターフェイスはフレームワークをサポートしており、コードに対して直接呼び出されるものではありません。

プロパティ

onclose
onerror
onmessage
onopen
readyState

メソッド

close()
send(any)

プロパティの詳細

onclose

onclose: (event: any) => void

プロパティ値

(event: any) => void

onerror

onerror: (event: any) => void

プロパティ値

(event: any) => void

onmessage

onmessage: (event: any) => void

プロパティ値

(event: any) => void

onopen

onopen: (event: any) => void

プロパティ値

(event: any) => void

readyState

readyState: number

プロパティ値

number

メソッドの詳細

close()

function close()

send(any)

function send(buffer: any)

パラメーター

buffer

any