ClaimedMagneticStripeReader.EnableAsync Méthode
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.
Obtient le lecteur de bandes magnétiques dans un état prêt pour recevoir des événements de données.
public:
virtual IAsyncAction ^ EnableAsync() = EnableAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction EnableAsync();
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction EnableAsync();
function enableAsync()
Public Function EnableAsync () As IAsyncAction
Retours
Aucun objet ou valeur n’est retourné par cette méthode lorsqu’elle se termine.
- Attributs
Exemples
// Enables the magnetic stripe reader to receive data.
task<void> Scenario1::EnableReader()
{
return create_task(_claimedReader->EnableAsync()).then([this](void)
{
// UpdateReaderStatusTextBlock("Magnetic stripe reader enabled successfully.");
});
}
// Enables the magnetic stripe reader to receive data
private async Task<bool> EnableReader()
{
await _claimedReader.EnableAsync();
return true;
}