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

적용 대상