UserDataTaskDataProviderConnection.SyncRequested Event

Definition

Overloads

SyncRequested

Raised when the client app attempts to sync all calendar appointments with the server.

SyncRequested

Raised when the client app attempts to sync all calendar appointments with the server.

// Register
event_token SyncRequested(TypedEventHandler<UserDataTaskDataProviderConnection, UserDataTaskListSyncManagerSyncRequestEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
UserDataTaskDataProviderConnection::SyncRequested_revoker SyncRequested(auto_revoke_t, TypedEventHandler<UserDataTaskDataProviderConnection, UserDataTaskListSyncManagerSyncRequestEventArgs const&> const& handler) const;
public event TypedEventHandler<UserDataTaskDataProviderConnection,UserDataTaskListSyncManagerSyncRequestEventArgs> SyncRequested;
function onSyncRequested(eventArgs) { /* Your code */ }
userDataTaskDataProviderConnection.addEventListener("syncrequested", onSyncRequested);
userDataTaskDataProviderConnection.removeEventListener("syncrequested", onSyncRequested);
- or -
userDataTaskDataProviderConnection.onsyncrequested = onSyncRequested;
Public Custom Event SyncRequested As TypedEventHandler(Of UserDataTaskDataProviderConnection, UserDataTaskListSyncManagerSyncRequestEventArgs) 

Event Type

Applies to