ESim.DiscoverAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
DiscoverAsync() |
使用默认 SMDS 地址异步执行 eSIM 配置文件发现操作。 注意 此功能仅适用于移动运营商应用和由移动网络运营商授予特权访问权限的 UWP 应用。 如果要使用此 API 并将应用发布到 Microsoft Store,则需要请求特殊批准才能 Microsoft.eSIMManagement_8wekyb3d8bbwe使用自定义功能。 有关详细信息,请参阅 自定义功能。 |
DiscoverAsync(String, String) |
为提供的 RSP 服务器地址和匹配 ID 异步执行 eSIM 配置文件发现操作。 注意 此功能仅适用于移动运营商应用和由移动网络运营商授予特权访问权限的 UWP 应用。 如果要使用此 API 并将应用发布到 Microsoft Store,则需要请求特殊批准才能 Microsoft.eSIMManagement_8wekyb3d8bbwe使用自定义功能。 有关详细信息,请参阅 自定义功能。 |
DiscoverAsync()
public:
virtual IAsyncOperation<ESimDiscoverResult ^> ^ DiscoverAsync() = DiscoverAsync;
/// [Windows.Foundation.Metadata.Overload("DiscoverAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<ESimDiscoverResult> DiscoverAsync();
[Windows.Foundation.Metadata.Overload("DiscoverAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<ESimDiscoverResult> DiscoverAsync();
function discoverAsync()
Public Function DiscoverAsync () As IAsyncOperation(Of ESimDiscoverResult)
返回
表示操作结果的 ESimDiscoverResult 对象。
- 属性
Windows 要求
设备系列 |
Windows 10, version 1903 (在 10.0.18362.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v8.0 中引入)
|
应用功能 |
Microsoft.eSIMManagement_8wekyb3d8bbwe
|
示例
有关代码示例,请参阅 发现 。
注解
有关详细信息,请参阅 发现 。
适用于
DiscoverAsync(String, String)
public:
virtual IAsyncOperation<ESimDiscoverResult ^> ^ DiscoverAsync(Platform::String ^ serverAddress, Platform::String ^ matchingId) = DiscoverAsync;
/// [Windows.Foundation.Metadata.Overload("DiscoverWithServerAddressAndMatchingIdAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<ESimDiscoverResult> DiscoverAsync(winrt::hstring const& serverAddress, winrt::hstring const& matchingId);
[Windows.Foundation.Metadata.Overload("DiscoverWithServerAddressAndMatchingIdAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<ESimDiscoverResult> DiscoverAsync(string serverAddress, string matchingId);
function discoverAsync(serverAddress, matchingId)
Public Function DiscoverAsync (serverAddress As String, matchingId As String) As IAsyncOperation(Of ESimDiscoverResult)
参数
- serverAddress
-
String
Platform::String
winrt::hstring
包含 RSP 服务器地址的字符串。 如果 serverAddress
为空,则 API 使用默认 SMDS 地址。
- matchingId
-
String
Platform::String
winrt::hstring
包含匹配 ID 的字符串。
返回
表示操作结果的 ESimDiscoverResult 对象。
- 属性
Windows 要求
设备系列 |
Windows 10, version 1903 (在 10.0.18362.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v8.0 中引入)
|
应用功能 |
Microsoft.eSIMManagement_8wekyb3d8bbwe
|
示例
有关代码示例,请参阅 发现 。
注解
有关详细信息,请参阅 发现 。