次の方法で共有


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

適用対象