EmailMailboxSyncManager.SyncStatusChanged 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.
Fires whenever a mailbox's sync status changes.
// Register
event_token SyncStatusChanged(TypedEventHandler<EmailMailboxSyncManager, IInspectable const&> const& handler) const;
// Revoke with event_token
void SyncStatusChanged(event_token const* cookie) const;
// Revoke with event_revoker
EmailMailboxSyncManager::SyncStatusChanged_revoker SyncStatusChanged(auto_revoke_t, TypedEventHandler<EmailMailboxSyncManager, IInspectable const&> const& handler) const;
public event TypedEventHandler<EmailMailboxSyncManager,object> SyncStatusChanged;
function onSyncStatusChanged(eventArgs) { /* Your code */ }
emailMailboxSyncManager.addEventListener("syncstatuschanged", onSyncStatusChanged);
emailMailboxSyncManager.removeEventListener("syncstatuschanged", onSyncStatusChanged);
- or -
emailMailboxSyncManager.onsyncstatuschanged = onSyncStatusChanged;
Public Custom Event SyncStatusChanged As TypedEventHandler(Of EmailMailboxSyncManager, Object)
Event Type
TypedEventHandler<EmailMailboxSyncManager,IInspectable>
Windows requirements
App capabilities |
email
emailSystem
|