WebTransportError: streamErrorCode-Eigenschaft

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Sicherer Kontext: Diese Funktion ist nur in sicheren Kontexten (HTTPS) in einigen oder allen unterstützenden Browsern verfügbar.

Hinweis: Dieses Feature ist verfügbar in Web Workers.

Die schreibgeschützte Eigenschaft streamErrorCode des WebTransportError-Interfaces gibt eine Nummer im Bereich von 0-255 zurück, die den Anwendungsprotokollfehlercode für diesen Fehler angibt, oder null, falls keiner verfügbar ist.

Wert

Eine Nummer oder null.

Beispiele

js
const url = "not-a-url";

async function initTransport(url) {
  try {
    // Initialize transport connection
    const transport = new WebTransport(url);

    // The connection can be used once ready fulfills
    await transport.ready;

    // ...
  } catch (error) {
    const msg = `Transport initialization failed.
                 Reason: ${error.message}.
                 Source: ${error.source}.
                 Error code: ${error.streamErrorCode}.`;
    console.log(msg);
  }
}

Spezifikationen

Specification
WebTransport
# dom-webtransporterror-streamerrorcode

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch