Compartilhar via


GattCharacteristic.ValueChanged Evento

Definição

Um aplicativo pode registrar um manipulador de eventos para receber eventos quando notificações ou indicações são recebidas de um dispositivo, depois de definir o Descritor de Configuração característica do cliente.

// 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 de evento

Requisitos do Windows

Funcionalidades do aplicativo
bluetooth

Comentários

O objeto GattValueChangedEventArgs representa os argumentos recebidos por um manipulador de eventos ValueChanged usado para processar a notificação de alteração de valor característica e os eventos de indicação enviados por um dispositivo Bluetooth LE.

Aplica-se a

Confira também