Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
SmartCardReader.CardRemoved Event
Definition
- Namespace:
- Windows.Devices.SmartCards
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when a smart card is taken out of the smart card reader.
// 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)
Event Type
Applies to
See also
Feedback
Was this page helpful?
