ClaimedBarcodeScanner.EnableAsync Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene lo scanner di codice a barre in uno stato pronto per gli eventi 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
Restituisce
Nessun oggetto o valore viene restituito al completamento di questo metodo.
- Attributi
Esempio
// 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;
}
}