AppointmentDataProviderConnection.CancelMeetingRequested 이벤트

정의

사용자가 모임을 취소하도록 선택할 때 발생합니다.

// Register
event_token CancelMeetingRequested(TypedEventHandler<AppointmentDataProviderConnection, AppointmentCalendarCancelMeetingRequestEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
AppointmentDataProviderConnection::CancelMeetingRequested_revoker CancelMeetingRequested(auto_revoke_t, TypedEventHandler<AppointmentDataProviderConnection, AppointmentCalendarCancelMeetingRequestEventArgs const&> const& handler) const;
public event TypedEventHandler<AppointmentDataProviderConnection,AppointmentCalendarCancelMeetingRequestEventArgs> CancelMeetingRequested;
function onCancelMeetingRequested(eventArgs) { /* Your code */ }
appointmentDataProviderConnection.addEventListener("cancelmeetingrequested", onCancelMeetingRequested);
appointmentDataProviderConnection.removeEventListener("cancelmeetingrequested", onCancelMeetingRequested);
- or -
appointmentDataProviderConnection.oncancelmeetingrequested = onCancelMeetingRequested;
Public Custom Event CancelMeetingRequested As TypedEventHandler(Of AppointmentDataProviderConnection, AppointmentCalendarCancelMeetingRequestEventArgs) 

이벤트 유형

Windows 요구 사항

앱 기능
appointmentsSystem

적용 대상