WiFiDirectServiceSession.SessionStatusChanged Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Событие, возникает при изменении состояния сеанса.
// Register
event_token SessionStatusChanged(TypedEventHandler<WiFiDirectServiceSession, IInspectable const&> const& handler) const;
// Revoke with event_token
void SessionStatusChanged(event_token const* cookie) const;
// Revoke with event_revoker
WiFiDirectServiceSession::SessionStatusChanged_revoker SessionStatusChanged(auto_revoke_t, TypedEventHandler<WiFiDirectServiceSession, IInspectable const&> const& handler) const;
public event TypedEventHandler<WiFiDirectServiceSession,object> SessionStatusChanged;
function onSessionStatusChanged(eventArgs) { /* Your code */ }
wiFiDirectServiceSession.addEventListener("sessionstatuschanged", onSessionStatusChanged);
wiFiDirectServiceSession.removeEventListener("sessionstatuschanged", onSessionStatusChanged);
- or -
wiFiDirectServiceSession.onsessionstatuschanged = onSessionStatusChanged;
Public Custom Event SessionStatusChanged As TypedEventHandler(Of WiFiDirectServiceSession, Object)
Тип события
TypedEventHandler<WiFiDirectServiceSession,IInspectable>