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) 

Тип события

Комментарии

Позволяет ведущему приложению регистрировать обратный вызов, который вызывается при необходимости подключения к удаленному поставщику (совместному использованию именованного канала).

Применяется к

См. также раздел