Compartilhar via


ClaimedMagneticStripeReader.EnableAsync Método

Definição

Obtém o leitor de faixa magnética em um estado pronto para receber eventos de dados.

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

Retornos

Nenhum objeto ou valor é retornado por esse método quando ele é concluído.

Atributos

Exemplos

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

Aplica-se a

Confira também