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