EmailDataProviderConnection.DownloadMessageRequested 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.
Occurs when the email client has requested to download a message from the server.
// Register
event_token DownloadMessageRequested(TypedEventHandler<EmailDataProviderConnection, EmailMailboxDownloadMessageRequestEventArgs const&> const& handler) const;
// Revoke with event_token
void DownloadMessageRequested(event_token const* cookie) const;
// Revoke with event_revoker
EmailDataProviderConnection::DownloadMessageRequested_revoker DownloadMessageRequested(auto_revoke_t, TypedEventHandler<EmailDataProviderConnection, EmailMailboxDownloadMessageRequestEventArgs const&> const& handler) const;
public event TypedEventHandler<EmailDataProviderConnection,EmailMailboxDownloadMessageRequestEventArgs> DownloadMessageRequested;
function onDownloadMessageRequested(eventArgs) { /* Your code */ }
emailDataProviderConnection.addEventListener("downloadmessagerequested", onDownloadMessageRequested);
emailDataProviderConnection.removeEventListener("downloadmessagerequested", onDownloadMessageRequested);
- or -
emailDataProviderConnection.ondownloadmessagerequested = onDownloadMessageRequested;
Public Custom Event DownloadMessageRequested As TypedEventHandler(Of EmailDataProviderConnection, EmailMailboxDownloadMessageRequestEventArgs)
Event Type
Windows requirements
App capabilities |
email
emailSystem
|