SmartCardEmulator.ApduReceived 이벤트

정의

NFC 컨트롤러에서 APDU(애플리케이션 프로토콜 데이터 단위)를 수신할 때 발생합니다.

// Register
event_token ApduReceived(TypedEventHandler<SmartCardEmulator, SmartCardEmulatorApduReceivedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SmartCardEmulator::ApduReceived_revoker ApduReceived(auto_revoke_t, TypedEventHandler<SmartCardEmulator, SmartCardEmulatorApduReceivedEventArgs const&> const& handler) const;
public event TypedEventHandler<SmartCardEmulator,SmartCardEmulatorApduReceivedEventArgs> ApduReceived;
function onApduReceived(eventArgs) { /* Your code */ }
smartCardEmulator.addEventListener("apdureceived", onApduReceived);
smartCardEmulator.removeEventListener("apdureceived", onApduReceived);
- or -
smartCardEmulator.onapdureceived = onApduReceived;
Public Custom Event ApduReceived As TypedEventHandler(Of SmartCardEmulator, SmartCardEmulatorApduReceivedEventArgs) 

이벤트 유형

적용 대상

추가 정보