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) 

イベントの種類

Windows の要件

アプリの機能
appointmentsSystem

適用対象