AppointmentDataProviderConnection.CancelMeetingRequested 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 the user elects to cancel a meeting.
// 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)
Event Type
TypedEventHandler<AppointmentDataProviderConnection,AppointmentCalendarCancelMeetingRequestEventArgs>
Windows requirements
App capabilities |
appointmentsSystem
|