ClaimedMagneticStripeReader.AuthenticateDeviceAsync(Byte[]) 方法

定义

将设备置于经过身份验证的状态。

public:
 virtual IAsyncAction ^ AuthenticateDeviceAsync(Platform::Array <byte> ^ responseToken) = AuthenticateDeviceAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction AuthenticateDeviceAsync(winrt::array_view <byte> const& responseToken);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction AuthenticateDeviceAsync(byte[] responseToken);
function authenticateDeviceAsync(responseToken)
Public Function AuthenticateDeviceAsync (responseToken As Byte()) As IAsyncAction

参数

responseToken

Byte[]

byte[]

一个缓冲区,其中包含从上一次调用 RetrieveDeviceAuthenticationDataAsync 方法检索到的质询令牌生成的响应令牌。

返回

属性

注解

方法仅对支持身份验证的设备有效。

为了对设备进行身份验证,应用程序调用 RetrieveDeviceAuthenticationDataAsync 方法来检索质询令牌。 应用程序通常将此令牌传递给另一个实体,该实体具有共享机密的专门知识,并且能够创建适当的响应令牌。 然后,此响应令牌将传递到 AuthenticateDeviceAsync 方法,该方法使用它来验证身份验证请求。

适用于