PreviewTeamView.JoinMeetingRequested Event

Definition

Either the user, the shell or the app itself has initiated a meeting join. This tells the app that it is time to actually join the call. The app can use the deferral in the argument provided to this event handler to perform work before the shell displays UI indicating the call has been joined.

// Register
event_token JoinMeetingRequested(TypedEventHandler<PreviewTeamView, PreviewTeamJoinMeetingRequestedEventArgs const&> const& handler) const;

// Revoke with event_token
void JoinMeetingRequested(event_token const* cookie) const;

// Revoke with event_revoker
PreviewTeamView::JoinMeetingRequested_revoker JoinMeetingRequested(auto_revoke_t, TypedEventHandler<PreviewTeamView, PreviewTeamJoinMeetingRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<PreviewTeamView,PreviewTeamJoinMeetingRequestedEventArgs> JoinMeetingRequested;
function onJoinMeetingRequested(eventArgs) { /* Your code */ }
previewTeamView.addEventListener("joinmeetingrequested", onJoinMeetingRequested);
previewTeamView.removeEventListener("joinmeetingrequested", onJoinMeetingRequested);
- or -
previewTeamView.onjoinmeetingrequested = onJoinMeetingRequested;
Public Custom Event JoinMeetingRequested As TypedEventHandler(Of PreviewTeamView, PreviewTeamJoinMeetingRequestedEventArgs) 

Event Type

Applies to