GattLocalDescriptor.ReadRequested Event

Definition

An event that is triggered when a read has been requested.

// Register
event_token ReadRequested(TypedEventHandler<GattLocalDescriptor, GattReadRequestedEventArgs const&> const& handler) const;

// Revoke with event_token
void ReadRequested(event_token const* cookie) const;

// Revoke with event_revoker
GattLocalDescriptor::ReadRequested_revoker ReadRequested(auto_revoke_t, TypedEventHandler<GattLocalDescriptor, GattReadRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<GattLocalDescriptor,GattReadRequestedEventArgs> ReadRequested;
function onReadRequested(eventArgs) { /* Your code */ }
gattLocalDescriptor.addEventListener("readrequested", onReadRequested);
gattLocalDescriptor.removeEventListener("readrequested", onReadRequested);
- or -
gattLocalDescriptor.onreadrequested = onReadRequested;
Public Custom Event ReadRequested As TypedEventHandler(Of GattLocalDescriptor, GattReadRequestedEventArgs) 

Event Type

Windows requirements

App capabilities
bluetooth

Applies to