次の方法で共有


WebAuthenticationCoreManager.FindAccountProviderAsync メソッド

定義

オーバーロード

FindAccountProviderAsync(String)

Web アカウント プロバイダーの検索を非同期的に試行します。

FindAccountProviderAsync(String, String)

Web アカウント プロバイダーの検索を非同期的に試行します。

FindAccountProviderAsync(String, String, User)

Web アカウント プロバイダーの検索を非同期的に試行します。

FindAccountProviderAsync(String)

Web アカウント プロバイダーの検索を非同期的に試行します。

public:
 static IAsyncOperation<WebAccountProvider ^> ^ FindAccountProviderAsync(Platform::String ^ webAccountProviderId);
/// [Windows.Foundation.Metadata.Overload("FindAccountProviderAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<WebAccountProvider> FindAccountProviderAsync(winrt::hstring const& webAccountProviderId);
[Windows.Foundation.Metadata.Overload("FindAccountProviderAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<WebAccountProvider> FindAccountProviderAsync(string webAccountProviderId);
function findAccountProviderAsync(webAccountProviderId)
Public Shared Function FindAccountProviderAsync (webAccountProviderId As String) As IAsyncOperation(Of WebAccountProvider)

パラメーター

webAccountProviderId
String

Platform::String

winrt::hstring

検索する Web アカウント プロバイダーの ID。

戻り値

非同期の検索操作。 正常に完了すると、 には、見つかった Web アカウント プロバイダーを表す WebAccountProvider オブジェクトが含まれます。

属性

こちらもご覧ください

適用対象

FindAccountProviderAsync(String, String)

Web アカウント プロバイダーの検索を非同期的に試行します。

public:
 static IAsyncOperation<WebAccountProvider ^> ^ FindAccountProviderAsync(Platform::String ^ webAccountProviderId, Platform::String ^ authority);
/// [Windows.Foundation.Metadata.Overload("FindAccountProviderWithAuthorityAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<WebAccountProvider> FindAccountProviderAsync(winrt::hstring const& webAccountProviderId, winrt::hstring const& authority);
[Windows.Foundation.Metadata.Overload("FindAccountProviderWithAuthorityAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<WebAccountProvider> FindAccountProviderAsync(string webAccountProviderId, string authority);
function findAccountProviderAsync(webAccountProviderId, authority)
Public Shared Function FindAccountProviderAsync (webAccountProviderId As String, authority As String) As IAsyncOperation(Of WebAccountProvider)

パラメーター

webAccountProviderId
String

Platform::String

winrt::hstring

検索する Web アカウント プロバイダーの ID。

authority
String

Platform::String

winrt::hstring

検索する Web アカウント プロバイダーの権限。

重要

webAccountProviderId 値として を使用"https://login.windows.local"する場合は、authority 値を指定しないでください。 代わりに、このメソッドの 単一パラメーター オーバーロード を使用してください。

戻り値

非同期の検索操作。 正常に完了すると、 には、見つかった Web アカウント プロバイダーを表す WebAccountProvider オブジェクトが含まれます。

属性

こちらもご覧ください

適用対象

FindAccountProviderAsync(String, String, User)

Web アカウント プロバイダーの検索を非同期的に試行します。

public:
 static IAsyncOperation<WebAccountProvider ^> ^ FindAccountProviderAsync(Platform::String ^ webAccountProviderId, Platform::String ^ authority, User ^ user);
/// [Windows.Foundation.Metadata.Overload("FindAccountProviderWithAuthorityForUserAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<WebAccountProvider> FindAccountProviderAsync(winrt::hstring const& webAccountProviderId, winrt::hstring const& authority, User const& user);
[Windows.Foundation.Metadata.Overload("FindAccountProviderWithAuthorityForUserAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<WebAccountProvider> FindAccountProviderAsync(string webAccountProviderId, string authority, User user);
function findAccountProviderAsync(webAccountProviderId, authority, user)
Public Shared Function FindAccountProviderAsync (webAccountProviderId As String, authority As String, user As User) As IAsyncOperation(Of WebAccountProvider)

パラメーター

webAccountProviderId
String

Platform::String

winrt::hstring

検索する Web アカウント プロバイダーの ID。

authority
String

Platform::String

winrt::hstring

検索する Web アカウント プロバイダーの権限。

user
User

検索する Web アカウント プロバイダーに関連付けられているユーザー。

重要

webAccountProviderId 値として を使用"https://login.windows.local"する場合は、authority 値を指定しないでください。 代わりに、このメソッドの 単一パラメーター オーバーロード を使用してください。

戻り値

非同期の検索操作。 正常に完了すると、 には、見つかった Web アカウント プロバイダーを表す WebAccountProvider オブジェクトが含まれます。

属性

こちらもご覧ください

適用対象