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) 

事件类型

适用于

另请参阅