ClaimedBarcodeScanner.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 scanneur de codes-barres dans un état prêt pour les événements DataReceived .
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é lorsque cette méthode est terminée.
- Attributs
Exemples
// Enables the barcode scanner to receive data.
task<void> Scenario1::EnableScanner()
{
return create_task(claimedScanner->EnableAsync()).then([this](void)
{
// UpdateOutput("Barcode scanner enabled successfully.");
});
}
// Enables the barcode scanner to receive data
private async Task<bool> EnableScanner()
{
if (claimedScanner == null)
{
return false;
}
else
{
await claimedScanner.EnableAsync();
return true;
}
}