AppointmentDataProviderConnection.SyncRequested Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возникает, когда пользователь выбирает синхронизацию всех встреч в календаре с сервером.
// Register
event_token SyncRequested(TypedEventHandler<AppointmentDataProviderConnection, AppointmentCalendarSyncManagerSyncRequestEventArgs const&> const& handler) const;
// Revoke with event_token
void SyncRequested(event_token const* cookie) const;
// Revoke with event_revoker
AppointmentDataProviderConnection::SyncRequested_revoker SyncRequested(auto_revoke_t, TypedEventHandler<AppointmentDataProviderConnection, AppointmentCalendarSyncManagerSyncRequestEventArgs const&> const& handler) const;
public event TypedEventHandler<AppointmentDataProviderConnection,AppointmentCalendarSyncManagerSyncRequestEventArgs> SyncRequested;
function onSyncRequested(eventArgs) { /* Your code */ }
appointmentDataProviderConnection.addEventListener("syncrequested", onSyncRequested);
appointmentDataProviderConnection.removeEventListener("syncrequested", onSyncRequested);
- or -
appointmentDataProviderConnection.onsyncrequested = onSyncRequested;
Public Custom Event SyncRequested As TypedEventHandler(Of AppointmentDataProviderConnection, AppointmentCalendarSyncManagerSyncRequestEventArgs)
Тип события
TypedEventHandler<AppointmentDataProviderConnection,AppointmentCalendarSyncManagerSyncRequestEventArgs>
Требования к Windows
Возможности приложения |
appointmentsSystem
|