PreviewTeamView.EndMeetingRequested 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.
Indicates the app should end the call. It can take a deferral using the the argument provided to block the shell UI from being cleaned up until the call is fully cleaned up.
// Register
event_token EndMeetingRequested(TypedEventHandler<PreviewTeamView, PreviewTeamEndMeetingRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void EndMeetingRequested(event_token const* cookie) const;
// Revoke with event_revoker
PreviewTeamView::EndMeetingRequested_revoker EndMeetingRequested(auto_revoke_t, TypedEventHandler<PreviewTeamView, PreviewTeamEndMeetingRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<PreviewTeamView,PreviewTeamEndMeetingRequestedEventArgs> EndMeetingRequested;
function onEndMeetingRequested(eventArgs) { /* Your code */ }
previewTeamView.addEventListener("endmeetingrequested", onEndMeetingRequested);
previewTeamView.removeEventListener("endmeetingrequested", onEndMeetingRequested);
- or -
previewTeamView.onendmeetingrequested = onEndMeetingRequested;
Public Custom Event EndMeetingRequested As TypedEventHandler(Of PreviewTeamView, PreviewTeamEndMeetingRequestedEventArgs)