SmartCardEmulator.ConnectionDeactivated Событие

Определение

Происходит, когда подключение к устройству физически разорвано или когда устройство чтения NFC запрашивает подключение к другому приложению.

// Register
event_token ConnectionDeactivated(TypedEventHandler<SmartCardEmulator, SmartCardEmulatorConnectionDeactivatedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
SmartCardEmulator::ConnectionDeactivated_revoker ConnectionDeactivated(auto_revoke_t, TypedEventHandler<SmartCardEmulator, SmartCardEmulatorConnectionDeactivatedEventArgs const&> const& handler) const;
public event TypedEventHandler<SmartCardEmulator,SmartCardEmulatorConnectionDeactivatedEventArgs> ConnectionDeactivated;
function onConnectionDeactivated(eventArgs) { /* Your code */ }
smartCardEmulator.addEventListener("connectiondeactivated", onConnectionDeactivated);
smartCardEmulator.removeEventListener("connectiondeactivated", onConnectionDeactivated);
- or -
smartCardEmulator.onconnectiondeactivated = onConnectionDeactivated;
Public Custom Event ConnectionDeactivated As TypedEventHandler(Of SmartCardEmulator, SmartCardEmulatorConnectionDeactivatedEventArgs) 

Тип события

Применяется к

См. также раздел