diff options
Diffstat (limited to 'files/fr/web/api/websocket/onmessage/index.html')
-rw-r--r-- | files/fr/web/api/websocket/onmessage/index.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/files/fr/web/api/websocket/onmessage/index.html b/files/fr/web/api/websocket/onmessage/index.html new file mode 100644 index 0000000000..03ff9451fb --- /dev/null +++ b/files/fr/web/api/websocket/onmessage/index.html @@ -0,0 +1,27 @@ +--- +title: WebSocket.onmessage +slug: Web/API/WebSocket/onmessage +browser-compat: api.WebSocket.onmessage +--- +<div>{{APIRef("Web Sockets API")}}</div> + +<p>La propriété <strong><code>WebSocket.onmessage</code></strong> est un <a href="/fr/docs/Web/Events/Event_handlers">gestionnaire d'évènement</a> qui est appelé lorsqu'un message est reçu depuis le serveur. Ce gestionnaire est appelé avec un évènement <a href="/fr/docs/Web/API/MessageEvent"><code>MessageEvent</code></a> en paramètre.</p> + +<h2 id="syntax">Syntaxe</h2> + +<pre class="brush: js"> +unWebSocket.onmessage = function(event) { + console.debug("Message WebSocket reçu :", event); +};</pre> + +<h2 id="value">Valeur</h2> + +<p>Un objet <a href="/fr/docs/Web/API/EventListener"><code>EventListener</code></a>.</p> + +<h2 id="specifications">Spécifications</h2> + +<p>{{Specifications}}</p> + +<h2 id="browser_compatibility">Compatibilité des navigateurs</h2> + +<p>{{Compat}}</p> |