This article needs a technical review. How you can help.
The PresentationConnection
interface of the Presentation API provides methods and properties for managing a single presentation.
Properties
PresentationConnection.binaryType
- Returns either blob or arrayBuffer.
PresentationConnection.id
Read only- Provides the presentation connection identifier.
PresentationConnection.state
Read only- Returns either connected or disconnected.
Event handlers
PresentationConnection.onclose
- Fired when there is a call to
PresentationConnection.close()
. PresentationConnection.onconnect
- Fired when a presentation connection is established.
PresentationConnection.onmessage
- Fired when there is a call to
PresentationConnection.send()
. PresentationConnection.onstatechange
- Fired when a presentation connection changes state. States include
connected
,closed
, andterminated
. PresentationConnection.onterminated
- Fired when there is a call to
PresentationConnection.terminate()
.
Methods
PresentationConnection.close()
- Closes the current connection and sends a
PresentationConnectionCloseEvent
toPresentationConnection.onclosed
. PresentationConnection.send()
- Sends either binary or text data between a controlling browsing context and a presenting browsing context.
PresentationConnection.terminate()
- Terminates the current connection and fires
PresentationConnection.onterminated
.
Specifications
Specification | Status | Comment |
---|---|---|
Presentation API The definition of 'PresentationConnection interface' in that specification. |
Editor's Draft | Initial definition. |