blob: bbc5d722c4ea572569d658e1516e2314a3d5f6c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
---
title: WebSocket.extensions
slug: Web/API/WebSocket/extensions
tags:
- API
- Eigenschaft
- Referenz
- Web API
- WebSocket
translation_of: Web/API/WebSocket/extensions
---
<p>{{APIRef("Web Sockets API")}}</p>
<p>Die Eigenschaft <strong><code>WebSocket.extensions</code></strong> gibt die Erweiterungen des Servers zurück. Sie ist nur lesbar.</p>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox"><em>var extensions</em> = aWebSocket.extensions;</pre>
<h2 id="Wert">Wert</h2>
<p>Ein {{domxref("DOMString")}}.</p>
<p>Momentan ist dies entweder ein leerer String oder eine Liste an Erweiterungen, welche zwischen dem Server und dem Client ausgehandelt wurden.</p>
<h2 id="Spezifikationen">Spezifikationen</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spezifikation</th>
<th scope="col">Status</th>
<th scope="col">Kommentar</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', '#dom-websocket-extensions', 'WebSocket: extensions')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>
<p>{{Compat("api.WebSocket.extensions")}}</p>
|