SmartCardEmulator.ConnectionDeactivated Kejadian

Definisi

Terjadi ketika koneksi dengan perangkat rusak secara fisik atau ketika pembaca NFC meminta koneksi ke aplikasi yang berbeda.

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

Jenis Acara

Berlaku untuk

Lihat juga