SmartCardReader.CardAdded É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 inséré dans le lecteur carte intelligent ou appuyé sur un lecteur NFC.
// Register
event_token CardAdded(TypedEventHandler<SmartCardReader, CardAddedEventArgs const&> const& handler) const;
// Revoke with event_token
void CardAdded(event_token const* cookie) const;
// Revoke with event_revoker
SmartCardReader::CardAdded_revoker CardAdded(auto_revoke_t, TypedEventHandler<SmartCardReader, CardAddedEventArgs const&> const& handler) const;
public event TypedEventHandler<SmartCardReader,CardAddedEventArgs> CardAdded;
function onCardAdded(eventArgs) { /* Your code */ }
smartCardReader.addEventListener("cardadded", onCardAdded);
smartCardReader.removeEventListener("cardadded", onCardAdded);
- or -
smartCardReader.oncardadded = onCardAdded;
Public Custom Event CardAdded As TypedEventHandler(Of SmartCardReader, CardAddedEventArgs)