RemoteSystemSessionInvitationListener.InvitationReceived 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.
Raised when a remote session invitation from another device has been detected.
// Register
event_token InvitationReceived(TypedEventHandler<RemoteSystemSessionInvitationListener, RemoteSystemSessionInvitationReceivedEventArgs const&> const& handler) const;
// Revoke with event_token
void InvitationReceived(event_token const* cookie) const;
// Revoke with event_revoker
RemoteSystemSessionInvitationListener::InvitationReceived_revoker InvitationReceived(auto_revoke_t, TypedEventHandler<RemoteSystemSessionInvitationListener, RemoteSystemSessionInvitationReceivedEventArgs const&> const& handler) const;
public event TypedEventHandler<RemoteSystemSessionInvitationListener,RemoteSystemSessionInvitationReceivedEventArgs> InvitationReceived;
function onInvitationReceived(eventArgs) { /* Your code */ }
remoteSystemSessionInvitationListener.addEventListener("invitationreceived", onInvitationReceived);
remoteSystemSessionInvitationListener.removeEventListener("invitationreceived", onInvitationReceived);
- or -
remoteSystemSessionInvitationListener.oninvitationreceived = onInvitationReceived;
Public Custom Event InvitationReceived As TypedEventHandler(Of RemoteSystemSessionInvitationListener, RemoteSystemSessionInvitationReceivedEventArgs)
Event Type
TypedEventHandler<RemoteSystemSessionInvitationListener,RemoteSystemSessionInvitationReceivedEventArgs>
Windows requirements
App capabilities |
remoteSystem
|