EmailDataProviderConnection.ResolveRecipientsRequested Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Происходит, когда почтовый клиент запрашивает разрешение получателей сообщения.
// Register
event_token ResolveRecipientsRequested(TypedEventHandler<EmailDataProviderConnection, EmailMailboxResolveRecipientsRequestEventArgs const&> const& handler) const;
// Revoke with event_token
void ResolveRecipientsRequested(event_token const* cookie) const;
// Revoke with event_revoker
EmailDataProviderConnection::ResolveRecipientsRequested_revoker ResolveRecipientsRequested(auto_revoke_t, TypedEventHandler<EmailDataProviderConnection, EmailMailboxResolveRecipientsRequestEventArgs const&> const& handler) const;
public event TypedEventHandler<EmailDataProviderConnection,EmailMailboxResolveRecipientsRequestEventArgs> ResolveRecipientsRequested;
function onResolveRecipientsRequested(eventArgs) { /* Your code */ }
emailDataProviderConnection.addEventListener("resolverecipientsrequested", onResolveRecipientsRequested);
emailDataProviderConnection.removeEventListener("resolverecipientsrequested", onResolveRecipientsRequested);
- or -
emailDataProviderConnection.onresolverecipientsrequested = onResolveRecipientsRequested;
Public Custom Event ResolveRecipientsRequested As TypedEventHandler(Of EmailDataProviderConnection, EmailMailboxResolveRecipientsRequestEventArgs)
Тип события
Требования к Windows
Возможности приложения |
email
emailSystem
|