SmartCardConnection SmartCardConnection SmartCardConnection SmartCardConnection Class

Definition

Represents a connection to a smart card.

public : sealed class SmartCardConnection : ISmartCardConnection, IClosablepublic sealed class SmartCardConnection : ISmartCardConnection, IDisposablePublic NotInheritable Class SmartCardConnection Implements ISmartCardConnection, IDisposable// You can use this class in JavaScript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)

Methods

Close() Close() Close() Close()

Completes the smart card authentication challenge/response operation and frees associated system resources.

public : void Close()This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
See Also

Dispose() Dispose() Dispose() Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

This member is not implemented in C++void Dispose()Sub Disposevoid Dispose()

TransmitAsync(IBuffer) TransmitAsync(IBuffer) TransmitAsync(IBuffer) TransmitAsync(IBuffer)

Asynchronously transmits the supplied application protocol data unit (APDU) command and returns the response.

public : IAsyncOperation<IBuffer> TransmitAsync(IBuffer command)public IAsyncOperation<IBuffer> TransmitAsync(IBuffer command)Public Function TransmitAsync(command As IBuffer) As IAsyncOperation( Of IBuffer )// You can use this method in JavaScript.
Parameters
command
IBuffer IBuffer IBuffer IBuffer

The application protocol data unit (APDU) command to transmit to the smart card.

Returns

An asynchronous operation that, when completed, returns the response to the command that was transmitted.

See Also

See Also