IContentSiteBridgeEndpointConnectionPrivate.RemoteEndpointRequestedStateChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
// Register
event_token RemoteEndpointRequestedStateChanged(TypedEventHandler<IContentSiteBridgeEndpointConnectionPrivate, EndpointRequestedStateChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void RemoteEndpointRequestedStateChanged(event_token const* cookie) const;
// Revoke with event_revoker
IContentSiteBridgeEndpointConnectionPrivate::RemoteEndpointRequestedStateChanged_revoker RemoteEndpointRequestedStateChanged(auto_revoke_t, TypedEventHandler<IContentSiteBridgeEndpointConnectionPrivate, EndpointRequestedStateChangedEventArgs const&> const& handler) const;
event TypedEventHandler<IContentSiteBridgeEndpointConnectionPrivate,EndpointRequestedStateChangedEventArgs> RemoteEndpointRequestedStateChanged;
function onRemoteEndpointRequestedStateChanged(eventArgs) { /* Your code */ }
iContentSiteBridgeEndpointConnectionPrivate.addEventListener("remoteendpointrequestedstatechanged", onRemoteEndpointRequestedStateChanged);
iContentSiteBridgeEndpointConnectionPrivate.removeEventListener("remoteendpointrequestedstatechanged", onRemoteEndpointRequestedStateChanged);
- or -
iContentSiteBridgeEndpointConnectionPrivate.onremoteendpointrequestedstatechanged = onRemoteEndpointRequestedStateChanged;
Event RemoteEndpointRequestedStateChanged As TypedEventHandler(Of IContentSiteBridgeEndpointConnectionPrivate, EndpointRequestedStateChangedEventArgs)