ClaimedMagneticStripeReader.EnableAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得磁條讀取器進入就緒狀態,以接收資料事件。
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 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;
}