SmartCardEmulatorApduReceivedEventArgs.TryRespondAsync 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.
Overload
TryRespondAsync(IBuffer) |
Tenta di rispondere a un APDU. |
TryRespondAsync(IBuffer, IReference<UInt32>) |
Tenta di rispondere a un APDU. |
TryRespondAsync(IBuffer)
Tenta di rispondere a un APDU.
public:
virtual IAsyncOperation<bool> ^ TryRespondAsync(IBuffer ^ responseApdu) = TryRespondAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryRespondAsync(IBuffer const& responseApdu);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryRespondAsync(IBuffer responseApdu);
function tryRespondAsync(responseApdu)
Public Function TryRespondAsync (responseApdu As IBuffer) As IAsyncOperation(Of Boolean)
Parametri
- responseApdu
- IBuffer
Buffer contenente la risposta.
Restituisce
Restituisce un'operazione asincrona che restituisce un valore booleano al termine dell'operazione. Il valore booleano sarà true se l'operazione ha avuto esito positivo e false in caso contrario.
- Attributi
Vedi anche
- TryRespondAsync(IBuffer, IReference<UInt32>)
- Creare un'app smart card NFC (si applica solo a Windows 10 Mobile)
Si applica a
TryRespondAsync(IBuffer, IReference<UInt32>)
Tenta di rispondere a un APDU.
public:
virtual IAsyncOperation<bool> ^ TryRespondAsync(IBuffer ^ responseApdu, IReference<unsigned int> ^ nextState) = TryRespondAsync;
/// [Windows.Foundation.Metadata.Overload("TryRespondWithStateAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryRespondAsync(IBuffer const& responseApdu, IReference<uint32_t> const& nextState);
[Windows.Foundation.Metadata.Overload("TryRespondWithStateAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryRespondAsync(IBuffer responseApdu, System.Nullable<uint> nextState);
function tryRespondAsync(responseApdu, nextState)
Public Function TryRespondAsync (responseApdu As IBuffer, nextState As Nullable(Of UInteger)) As IAsyncOperation(Of Boolean)
Parametri
- responseApdu
- IBuffer
Buffer contenente la risposta.
- nextState
-
Windows.Foundation.IReference<unsigned int>
IReference<uint32_t>
Riferimento contenente lo stato successivo.
Restituisce
Restituisce un'operazione asincrona che restituisce un valore booleano al termine dell'operazione. Il valore booleano è true se l'operazione è stata completata correttamente e false in caso contrario.
- Attributi
Requisiti Windows
Famiglia di dispositivi |
Windows Mobile Extension SDK (è stato introdotto in 10.0.10586.0)
|
API contract |
Windows.Devices.SmartCards.SmartCardEmulatorContract (è stato introdotto in v2.0)
|