SmartCardReader.CardRemoved Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’un carte intelligent est retiré du lecteur smart carte.
// Register
event_token CardRemoved(TypedEventHandler<SmartCardReader, CardRemovedEventArgs const&> const& handler) const;
// Revoke with event_token
void CardRemoved(event_token const* cookie) const;
// Revoke with event_revoker
SmartCardReader::CardRemoved_revoker CardRemoved(auto_revoke_t, TypedEventHandler<SmartCardReader, CardRemovedEventArgs const&> const& handler) const;
public event TypedEventHandler<SmartCardReader,CardRemovedEventArgs> CardRemoved;
function onCardRemoved(eventArgs) { /* Your code */ }
smartCardReader.addEventListener("cardremoved", onCardRemoved);
smartCardReader.removeEventListener("cardremoved", onCardRemoved);
- or -
smartCardReader.oncardremoved = onCardRemoved;
Public Custom Event CardRemoved As TypedEventHandler(Of SmartCardReader, CardRemovedEventArgs)