WiFiDirectServiceSession.SessionStatusChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
セッションの状態が変更されたときに発生するイベント。
// 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>