GattLocalCharacteristic.WriteRequested イベント

定義

これは、書き込みが要求されたときにトリガーされるイベントです。

// Register
event_token WriteRequested(TypedEventHandler<GattLocalCharacteristic, GattWriteRequestedEventArgs const&> const& handler) const;

// Revoke with event_token
void WriteRequested(event_token const* cookie) const;

// Revoke with event_revoker
GattLocalCharacteristic::WriteRequested_revoker WriteRequested(auto_revoke_t, TypedEventHandler<GattLocalCharacteristic, GattWriteRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<GattLocalCharacteristic,GattWriteRequestedEventArgs> WriteRequested;
function onWriteRequested(eventArgs) { /* Your code */ }
gattLocalCharacteristic.addEventListener("writerequested", onWriteRequested);
gattLocalCharacteristic.removeEventListener("writerequested", onWriteRequested);
- or -
gattLocalCharacteristic.onwriterequested = onWriteRequested;
Public Custom Event WriteRequested As TypedEventHandler(Of GattLocalCharacteristic, GattWriteRequestedEventArgs) 

イベントの種類

Windows の要件

アプリの機能
bluetooth

適用対象