GattLocalCharacteristic.ReadRequested 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 a GATT client requests a read operation.
// Register
event_token ReadRequested(TypedEventHandler<GattLocalCharacteristic, GattReadRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void ReadRequested(event_token const* cookie) const;
// Revoke with event_revoker
GattLocalCharacteristic::ReadRequested_revoker ReadRequested(auto_revoke_t, TypedEventHandler<GattLocalCharacteristic, GattReadRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<GattLocalCharacteristic,GattReadRequestedEventArgs> ReadRequested;
function onReadRequested(eventArgs) { /* Your code */ }
gattLocalCharacteristic.addEventListener("readrequested", onReadRequested);
gattLocalCharacteristic.removeEventListener("readrequested", onReadRequested);
- or -
gattLocalCharacteristic.onreadrequested = onReadRequested;
Public Custom Event ReadRequested As TypedEventHandler(Of GattLocalCharacteristic, GattReadRequestedEventArgs)
Event Type
Windows requirements
App capabilities |
bluetooth
|