Share via


ESimProfileMetadata.ConfirmInstallAsync Method

Definition

Overloads

ConfirmInstallAsync()

Asynchronously (with progress) downloads and installs an eSIM profile.

Note

This functionality is available only to mobile operator apps and UWP apps given privileged access by mobile network operators.

If you want to use this API and publish your app to the Microsoft Store, then you'll need to request special approval to use the custom capability Microsoft.eSIMManagement_8wekyb3d8bbwe. For more info, see Custom capabilities.

ConfirmInstallAsync(String)

Asynchronously (with progress) downloads and installs an eSIM profile whose confirmation code is provided.

Note

This functionality is available only to mobile operator apps and UWP apps given privileged access by mobile network operators.

If you want to use this API and publish your app to the Microsoft Store, then you'll need to request special approval to use the custom capability Microsoft.eSIMManagement_8wekyb3d8bbwe. For more info, see Custom capabilities.

ConfirmInstallAsync()

Asynchronously (with progress) downloads and installs an eSIM profile.

Note

This functionality is available only to mobile operator apps and UWP apps given privileged access by mobile network operators.

If you want to use this API and publish your app to the Microsoft Store, then you'll need to request special approval to use the custom capability Microsoft.eSIMManagement_8wekyb3d8bbwe. For more info, see Custom capabilities.

public:
 virtual IAsyncOperationWithProgress<ESimOperationResult ^, ESimProfileInstallProgress> ^ ConfirmInstallAsync() = ConfirmInstallAsync;
/// [Windows.Foundation.Metadata.Overload("ConfirmInstallAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperationWithProgress<ESimOperationResult, ESimProfileInstallProgress> ConfirmInstallAsync();
[Windows.Foundation.Metadata.Overload("ConfirmInstallAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperationWithProgress<ESimOperationResult,ESimProfileInstallProgress> ConfirmInstallAsync();
function confirmInstallAsync()
Public Function ConfirmInstallAsync () As IAsyncOperationWithProgress(Of ESimOperationResult, ESimProfileInstallProgress)

Returns

Attributes

Windows requirements

App capabilities
Microsoft.eSIMManagement_8wekyb3d8bbwe

Remarks

An asynchronous download and install operation with progress. On successful completion, contains an ESimProfileInstallProgress object representing the result of the download and install operation.

Applies to

ConfirmInstallAsync(String)

Asynchronously (with progress) downloads and installs an eSIM profile whose confirmation code is provided.

Note

This functionality is available only to mobile operator apps and UWP apps given privileged access by mobile network operators.

If you want to use this API and publish your app to the Microsoft Store, then you'll need to request special approval to use the custom capability Microsoft.eSIMManagement_8wekyb3d8bbwe. For more info, see Custom capabilities.

public:
 virtual IAsyncOperationWithProgress<ESimOperationResult ^, ESimProfileInstallProgress> ^ ConfirmInstallAsync(Platform::String ^ confirmationCode) = ConfirmInstallAsync;
/// [Windows.Foundation.Metadata.Overload("ConfirmInstallWithConfirmationCodeAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperationWithProgress<ESimOperationResult, ESimProfileInstallProgress> ConfirmInstallAsync(winrt::hstring const& confirmationCode);
[Windows.Foundation.Metadata.Overload("ConfirmInstallWithConfirmationCodeAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperationWithProgress<ESimOperationResult,ESimProfileInstallProgress> ConfirmInstallAsync(string confirmationCode);
function confirmInstallAsync(confirmationCode)
Public Function ConfirmInstallAsync (confirmationCode As String) As IAsyncOperationWithProgress(Of ESimOperationResult, ESimProfileInstallProgress)

Parameters

confirmationCode
String

Platform::String

winrt::hstring

The confirmation code for the eSIM profile being downloaded and installed.

Returns

An asynchronous download and install operation with progress. On successful completion, contains an ESimProfileInstallProgress object representing the result of the download and install operation.

Attributes

Windows requirements

App capabilities
Microsoft.eSIMManagement_8wekyb3d8bbwe

Applies to