Partager via


GattLocalCharacteristic.ReadRequested Événement

Définition

Événement déclenché lorsqu’un client GATT demande une opération de lecture.

// 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) 

Type d'événement

Configuration requise pour Windows

Fonctionnalités de l’application
bluetooth

S’applique à