WebAuthenticationCoreManager.FindAccountProviderAsync Méthode

Définition

Surcharges

FindAccountProviderAsync(String)

Tente de manière asynchrone de trouver un fournisseur de compte web.

FindAccountProviderAsync(String, String)

Tente de manière asynchrone de trouver un fournisseur de compte web.

FindAccountProviderAsync(String, String, User)

Tente de manière asynchrone de trouver un fournisseur de compte web.

FindAccountProviderAsync(String)

Tente de manière asynchrone de trouver un fournisseur de compte 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)

Paramètres

webAccountProviderId
String

Platform::String

winrt::hstring

ID du fournisseur de compte web à rechercher.

Retours

Opération de recherche asynchrone. Une fois l’opération terminée, contient un objet WebAccountProvider représentant le fournisseur de compte web trouvé.

Attributs

Voir aussi

S’applique à

FindAccountProviderAsync(String, String)

Tente de manière asynchrone de trouver un fournisseur de compte 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)

Paramètres

webAccountProviderId
String

Platform::String

winrt::hstring

ID du fournisseur de compte web à rechercher.

authority
String

Platform::String

winrt::hstring

Autorité du fournisseur de compte web à rechercher.

Important

Lorsque vous utilisez "https://login.windows.local" comme valeur webAccountProviderId , vous ne devez pas spécifier de valeur d’autorité . Utilisez plutôt la surcharge à paramètre unique de cette méthode.

Retours

Opération de recherche asynchrone. Une fois l’opération terminée, contient un objet WebAccountProvider représentant le fournisseur de compte web trouvé.

Attributs

Voir aussi

S’applique à

FindAccountProviderAsync(String, String, User)

Tente de manière asynchrone de trouver un fournisseur de compte 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)

Paramètres

webAccountProviderId
String

Platform::String

winrt::hstring

ID du fournisseur de compte web à rechercher.

authority
String

Platform::String

winrt::hstring

Autorité du fournisseur de compte web à rechercher.

user
User

Utilisateur associé au fournisseur de compte web à rechercher.

Important

Lorsque vous utilisez "https://login.windows.local" comme valeur webAccountProviderId , vous ne devez pas spécifier de valeur d’autorité . Utilisez plutôt la surcharge à paramètre unique de cette méthode.

Retours

Opération de recherche asynchrone. Une fois l’opération terminée, contient un objet WebAccountProvider représentant le fournisseur de compte web trouvé.

Attributs

Voir aussi

S’applique à