Deprecated
This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The RTCPeerConnection.onpeeridentity
event handler is a
property containing the code to execute whent the peeridentity
event, of
type Event
, is received by this RTCPeerConnection
. Such an
event is sent when an identity assertion, received from a peer, has been successfully
validated.
This event handler is obsolete. To detect successful validation of the
identity, wait for the promise returned by peerIdentity
to resolve successfully with the peer's identity.
Syntax
peerconnection.onpeeridentity = function;
Values
function
is the name of a user-defined function, without the()
suffix or any parameters, or an anonymous function declaration, such asfunction(event) {...}
. An event handler always has one single parameter, containing the event, here of typeEvent
.
Example
pc.onpeeridentity = function(ev) { alert("onpeeridentity event detected!"); };
Browser compatibility
BCD tables only load in the browser
See also
- The
peeridentity
event and its type,Event
.