次の方法で共有


GattLocalDescriptor.ReadRequested イベント

定義

読み取りが要求されたときにトリガーされるイベント。

// Register
event_token ReadRequested(TypedEventHandler<GattLocalDescriptor, GattReadRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
GattLocalDescriptor::ReadRequested_revoker ReadRequested(auto_revoke_t, TypedEventHandler<GattLocalDescriptor, GattReadRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<GattLocalDescriptor,GattReadRequestedEventArgs> ReadRequested;
function onReadRequested(eventArgs) { /* Your code */ }
gattLocalDescriptor.addEventListener("readrequested", onReadRequested);
gattLocalDescriptor.removeEventListener("readrequested", onReadRequested);
- or -
gattLocalDescriptor.onreadrequested = onReadRequested;
Public Custom Event ReadRequested As TypedEventHandler(Of GattLocalDescriptor, GattReadRequestedEventArgs) 

イベントの種類

Windows の要件

アプリの機能
bluetooth

適用対象