SmartCardChallengeContext.ProvisionAsync Method

Definition

Overloads

ProvisionAsync(IBuffer, Boolean)

Reconfigures an existing, configured smart card with a new response. Optionally, formats the smart card.

ProvisionAsync(IBuffer, Boolean, Guid)

Reconfigures an existing, configured smart card with a new response and ID. Optionally, formats the smart card.

ProvisionAsync(IBuffer, Boolean)

Reconfigures an existing, configured smart card with a new response. Optionally, formats the smart card.

public:
 virtual IAsyncAction ^ ProvisionAsync(IBuffer ^ response, bool formatCard) = ProvisionAsync;
/// [Windows.Foundation.Metadata.Overload("ProvisionAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction ProvisionAsync(IBuffer const& response, bool const& formatCard);
[Windows.Foundation.Metadata.Overload("ProvisionAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction ProvisionAsync(IBuffer response, bool formatCard);
function provisionAsync(response, formatCard)
Public Function ProvisionAsync (response As IBuffer, formatCard As Boolean) As IAsyncAction

Parameters

response
IBuffer

The new response to a smart card authentication challenge/response operation.

formatCard
Boolean

bool

True to format the smart card; otherwise false.

Returns

An asynchronous action that completes after the smart card reconfiguration attempt is done.

Attributes

See also

Applies to

ProvisionAsync(IBuffer, Boolean, Guid)

Reconfigures an existing, configured smart card with a new response and ID. Optionally, formats the smart card.

public:
 virtual IAsyncAction ^ ProvisionAsync(IBuffer ^ response, bool formatCard, Platform::Guid newCardId) = ProvisionAsync;
/// [Windows.Foundation.Metadata.Overload("ProvisionAsyncWithNewCardId")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncAction ProvisionAsync(IBuffer const& response, bool const& formatCard, winrt::guid const& newCardId);
[Windows.Foundation.Metadata.Overload("ProvisionAsyncWithNewCardId")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncAction ProvisionAsync(IBuffer response, bool formatCard, Guid newCardId);
function provisionAsync(response, formatCard, newCardId)
Public Function ProvisionAsync (response As IBuffer, formatCard As Boolean, newCardId As Guid) As IAsyncAction

Parameters

response
IBuffer

The new response to a smart card authentication challenge/response operation.

formatCard
Boolean

bool

True to format the smart card; otherwise false.

newCardId
Guid

Platform::Guid

winrt::guid

The new smart card ID.

Returns

An asynchronous action that completes after the smart card reconfiguration attempt is done.

Attributes

See also

Applies to