GattCharacteristic.ValueChanged Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Un'app può registrare un gestore eventi per ricevere eventi quando vengono ricevute notifiche o indicazioni da un dispositivo, dopo aver impostato il descrittore Configurazione caratteristica client.
// Register
event_token ValueChanged(TypedEventHandler<GattCharacteristic, GattValueChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void ValueChanged(event_token const* cookie) const;
// Revoke with event_revoker
GattCharacteristic::ValueChanged_revoker ValueChanged(auto_revoke_t, TypedEventHandler<GattCharacteristic, GattValueChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<GattCharacteristic,GattValueChangedEventArgs> ValueChanged;
function onValueChanged(eventArgs) { /* Your code */ }
gattCharacteristic.addEventListener("valuechanged", onValueChanged);
gattCharacteristic.removeEventListener("valuechanged", onValueChanged);
- or -
gattCharacteristic.onvaluechanged = onValueChanged;
Public Custom Event ValueChanged As TypedEventHandler(Of GattCharacteristic, GattValueChangedEventArgs)
Tipo evento
Requisiti Windows
Funzionalità dell'app |
bluetooth
|
Commenti
L'oggetto GattValueChangedEventArgs rappresenta gli argomenti ricevuti da un gestore eventi ValueChanged utilizzato per elaborare gli eventi di modifica del valore caratteristica e di indicazione inviati da un dispositivo Bluetooth LE.