SmartCardEmulator.ApduReceived イベント

定義

アプリケーション プロトコル データ ユニット (APDU) が NFC コントローラーによって受信されたときに発生します。

// 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) 

イベントの種類

適用対象

こちらもご覧ください