共用方式為


ClaimedBarcodeScanner.EnableAsync 方法

定義

取得條碼掃描器為 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

傳回

這個方法完成時不會傳回任何物件或值。

屬性

範例

// 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;
    }            
}

適用於