WebTransportError: source-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 source-Eigenschaft der WebTransportError-Schnittstelle gibt einen Aufzählungswert zurück, der die Quelle des Fehlers angibt.

Wert

Ein Aufzählungswert; kann entweder stream oder session sein.

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-source

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch