GattLocalCharacteristic.ReadRequested イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
GATT クライアントが読み取り操作を要求したときにトリガーされるイベント。
// 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)
イベントの種類
Windows の要件
アプリの機能 |
bluetooth
|