共用方式為


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

適用於