aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/api/websocket/readystate/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/web/api/websocket/readystate/index.html')
-rw-r--r--files/de/web/api/websocket/readystate/index.html77
1 files changed, 77 insertions, 0 deletions
diff --git a/files/de/web/api/websocket/readystate/index.html b/files/de/web/api/websocket/readystate/index.html
new file mode 100644
index 0000000000..9abc994d65
--- /dev/null
+++ b/files/de/web/api/websocket/readystate/index.html
@@ -0,0 +1,77 @@
+---
+title: WebSocket.readyState
+slug: Web/API/WebSocket/readyState
+tags:
+ - API
+ - Eigenschaft
+ - Referenz
+ - Web API
+ - WebSocket
+translation_of: Web/API/WebSocket/readyState
+---
+<p>{{APIRef("Web Sockets API")}}</p>
+
+<p>Die Eigenschaft <strong><code>WebSocket.readyState</code></strong> gibt den momentanen Status einer {{domxref("WebSocket")}} Verbindung zurück. Sie ist nur lesbar.</p>
+
+<h2 id="Syntax">Syntax</h2>
+
+<pre class="syntaxbox">var readyState = <em>aWebSocket</em>.readyState;</pre>
+
+<h2 id="Werte">Werte</h2>
+
+<p>Einer der folgenden Werte kann vorhanden sein:</p>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <td class="header">Wert</td>
+ <td class="header">Status</td>
+ <td class="header">Beschreibung</td>
+ </tr>
+ <tr>
+ <td><code>0</code></td>
+ <td><code>CONNECTING</code></td>
+ <td>Der Socket wurde erstellt, jedoch besteht noch keine Verbindung.</td>
+ </tr>
+ <tr>
+ <td><code>1</code></td>
+ <td><code>OPEN</code></td>
+ <td>Eine Verbindung wurde hergestellt und kann zur Kommunikation genutzt werden.</td>
+ </tr>
+ <tr>
+ <td><code>2</code></td>
+ <td><code>CLOSING</code></td>
+ <td>Die Verbindung wird beendet.</td>
+ </tr>
+ <tr>
+ <td><code>3</code></td>
+ <td><code>CLOSED</code></td>
+ <td>Die Verbindung wurde geschlossen oder konnte nicht geöffnet werden.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Spezifikationen">Spezifikationen</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Specification</th>
+ <th scope="col">Status</th>
+ <th scope="col">Comment</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('HTML WHATWG', '#dom-websocket-readystate', 'WebSocket: readyState')}}</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.readyState")}}</p>