WebAuthenticationCoreManager.FindAllAccountsAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
FindAllAccountsAsync(WebAccountProvider) |
枚举用户为特定 ID 提供程序添加的所有帐户。 |
FindAllAccountsAsync(WebAccountProvider, String) |
枚举用户为特定 ID 提供程序添加的所有帐户。 |
FindAllAccountsAsync(WebAccountProvider)
枚举用户为特定 ID 提供程序添加的所有帐户。
public:
static IAsyncOperation<FindAllAccountsResult ^> ^ FindAllAccountsAsync(WebAccountProvider ^ provider);
/// [Windows.Foundation.Metadata.Overload("FindAllAccountsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<FindAllAccountsResult> FindAllAccountsAsync(WebAccountProvider const& provider);
[Windows.Foundation.Metadata.Overload("FindAllAccountsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<FindAllAccountsResult> FindAllAccountsAsync(WebAccountProvider provider);
function findAllAccountsAsync(provider)
Public Shared Function FindAllAccountsAsync (provider As WebAccountProvider) As IAsyncOperation(Of FindAllAccountsResult)
参数
- provider
- WebAccountProvider
拥有要检索的帐户的 ID 提供程序。
返回
异步查找操作。 成功完成后,包含一个 FindAllAccountsResult 对象,该对象表示帐户检索的结果。
- 属性
Windows 要求
设备系列 |
Windows 10, version 1803 (在 10.0.17134.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v6.0 中引入)
|
适用于
FindAllAccountsAsync(WebAccountProvider, String)
枚举用户为特定 ID 提供程序添加的所有帐户。
public:
static IAsyncOperation<FindAllAccountsResult ^> ^ FindAllAccountsAsync(WebAccountProvider ^ provider, Platform::String ^ clientId);
/// [Windows.Foundation.Metadata.Overload("FindAllAccountsWithClientIdAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<FindAllAccountsResult> FindAllAccountsAsync(WebAccountProvider const& provider, winrt::hstring const& clientId);
[Windows.Foundation.Metadata.Overload("FindAllAccountsWithClientIdAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<FindAllAccountsResult> FindAllAccountsAsync(WebAccountProvider provider, string clientId);
function findAllAccountsAsync(provider, clientId)
Public Shared Function FindAllAccountsAsync (provider As WebAccountProvider, clientId As String) As IAsyncOperation(Of FindAllAccountsResult)
参数
- provider
- WebAccountProvider
拥有要检索的帐户的 ID 提供程序。
- clientId
-
String
Platform::String
winrt::hstring
客户端应用程序的 ID。
返回
异步查找操作。 成功完成后,包含一个 FindAllAccountsResult 对象,该对象表示帐户检索的结果。
- 属性
Windows 要求
设备系列 |
Windows 10, version 1803 (在 10.0.17134.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v6.0 中引入)
|