GattSession.SessionStatusChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An event that is triggered when the GATT session status has changed.
// Register
event_token SessionStatusChanged(TypedEventHandler<GattSession, GattSessionStatusChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void SessionStatusChanged(event_token const* cookie) const;
// Revoke with event_revoker
GattSession::SessionStatusChanged_revoker SessionStatusChanged(auto_revoke_t, TypedEventHandler<GattSession, GattSessionStatusChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<GattSession,GattSessionStatusChangedEventArgs> SessionStatusChanged;
function onSessionStatusChanged(eventArgs) { /* Your code */ }
gattSession.addEventListener("sessionstatuschanged", onSessionStatusChanged);
gattSession.removeEventListener("sessionstatuschanged", onSessionStatusChanged);
- or -
gattSession.onsessionstatuschanged = onSessionStatusChanged;
Public Custom Event SessionStatusChanged As TypedEventHandler(Of GattSession, GattSessionStatusChangedEventArgs)
Event Type
Windows requirements
App capabilities |
bluetooth
|