PreviewTeamView.EndMeetingRequested Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Indica que o aplicativo deve encerrar a chamada. Pode ser necessário um adiamento usando o argumento fornecido para impedir que a interface do usuário do shell seja limpa até que a chamada seja totalmente limpa.
// 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)