BluetoothLEDevice.NameChanged Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando o nome do dispositivo foi alterado.
// Register
event_token NameChanged(TypedEventHandler<BluetoothLEDevice, IInspectable const&> const& handler) const;
// Revoke with event_token
void NameChanged(event_token const* cookie) const;
// Revoke with event_revoker
BluetoothLEDevice::NameChanged_revoker NameChanged(auto_revoke_t, TypedEventHandler<BluetoothLEDevice, IInspectable const&> const& handler) const;
public event TypedEventHandler<BluetoothLEDevice,object> NameChanged;
function onNameChanged(eventArgs) { /* Your code */ }
bluetoothLEDevice.addEventListener("namechanged", onNameChanged);
bluetoothLEDevice.removeEventListener("namechanged", onNameChanged);
- or -
bluetoothLEDevice.onnamechanged = onNameChanged;
Public Custom Event NameChanged As TypedEventHandler(Of BluetoothLEDevice, Object)
Tipo de evento
TypedEventHandler<BluetoothLEDevice,IInspectable>
Requisitos do Windows
Funcionalidades do aplicativo |
bluetooth
|
Comentários
No manipulador desse evento, para obter o nome, consulte a propriedade BluetoothLEDevice.Name no BluetoothLEDevice que é passado para o manipulador.