RemoteAutomationClientSession.ConnectionRequested Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Происходит при запросе подключения к удаленной системе.
// Register
event_token ConnectionRequested(TypedEventHandler<RemoteAutomationClientSession, RemoteAutomationConnectionRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void ConnectionRequested(event_token const* cookie) const;
// Revoke with event_revoker
RemoteAutomationClientSession::ConnectionRequested_revoker ConnectionRequested(auto_revoke_t, TypedEventHandler<RemoteAutomationClientSession, RemoteAutomationConnectionRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<RemoteAutomationClientSession,RemoteAutomationConnectionRequestedEventArgs> ConnectionRequested;
function onConnectionRequested(eventArgs) { /* Your code */ }
remoteAutomationClientSession.addEventListener("connectionrequested", onConnectionRequested);
remoteAutomationClientSession.removeEventListener("connectionrequested", onConnectionRequested);
- or -
remoteAutomationClientSession.onconnectionrequested = onConnectionRequested;
Public Custom Event ConnectionRequested As TypedEventHandler(Of RemoteAutomationClientSession, RemoteAutomationConnectionRequestedEventArgs)
Тип события
Комментарии
Позволяет ведущему приложению регистрировать обратный вызов, который вызывается при необходимости подключения к удаленному поставщику (совместному использованию именованного канала).