WebAuthenticationBroker.AuthenticateSilentlyAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
AuthenticateSilentlyAsync(Uri) |
Démarre l’opération d’authentification asynchrone en mode silencieux (aucune interface utilisateur ne sera affichée) avec une seule entrée. Vous pouvez appeler cette méthode plusieurs fois dans une même application ou sur plusieurs applications en même temps. |
AuthenticateSilentlyAsync(Uri, WebAuthenticationOptions) |
Démarre l’opération d’authentification asynchrone en mode silencieux (aucune interface utilisateur ne sera affichée) avec deux entrées. Vous pouvez appeler cette méthode plusieurs fois dans une même application ou sur plusieurs applications en même temps. |
AuthenticateSilentlyAsync(Uri)
Démarre l’opération d’authentification asynchrone en mode silencieux (aucune interface utilisateur ne sera affichée) avec une seule entrée. Vous pouvez appeler cette méthode plusieurs fois dans une même application ou sur plusieurs applications en même temps.
public:
static IAsyncOperation<WebAuthenticationResult ^> ^ AuthenticateSilentlyAsync(Uri ^ requestUri);
/// [Windows.Foundation.Metadata.Overload("AuthenticateSilentlyAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<WebAuthenticationResult> AuthenticateSilentlyAsync(Uri const& requestUri);
[Windows.Foundation.Metadata.Overload("AuthenticateSilentlyAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<WebAuthenticationResult> AuthenticateSilentlyAsync(System.Uri requestUri);
function authenticateSilentlyAsync(requestUri)
Public Shared Function AuthenticateSilentlyAsync (requestUri As Uri) As IAsyncOperation(Of WebAuthenticationResult)
Paramètres
URI de départ du service web. Cet URI doit être une adresse sécurisée de https://.
Retours
La façon d’interroger le status et d’obtenir les résultats de l’opération d’authentification. Si vous obtenez une erreur de paramètre non valide, la cause la plus courante est que vous n’utilisez pas HTTPS pour le paramètre requestUri.
- Attributs
Voir aussi
S’applique à
AuthenticateSilentlyAsync(Uri, WebAuthenticationOptions)
Démarre l’opération d’authentification asynchrone en mode silencieux (aucune interface utilisateur ne sera affichée) avec deux entrées. Vous pouvez appeler cette méthode plusieurs fois dans une même application ou sur plusieurs applications en même temps.
public:
static IAsyncOperation<WebAuthenticationResult ^> ^ AuthenticateSilentlyAsync(Uri ^ requestUri, WebAuthenticationOptions options);
/// [Windows.Foundation.Metadata.Overload("AuthenticateSilentlyWithOptionsAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<WebAuthenticationResult> AuthenticateSilentlyAsync(Uri const& requestUri, WebAuthenticationOptions const& options);
[Windows.Foundation.Metadata.Overload("AuthenticateSilentlyWithOptionsAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<WebAuthenticationResult> AuthenticateSilentlyAsync(System.Uri requestUri, WebAuthenticationOptions options);
function authenticateSilentlyAsync(requestUri, options)
Public Shared Function AuthenticateSilentlyAsync (requestUri As Uri, options As WebAuthenticationOptions) As IAsyncOperation(Of WebAuthenticationResult)
Paramètres
URI de départ du service web. Cet URI doit être une adresse sécurisée de https://.
- options
- WebAuthenticationOptions
Options de l’opération d’authentification.
Retours
La façon d’interroger le status et d’obtenir les résultats de l’opération d’authentification. Si vous obtenez une erreur de paramètre non valide, la cause la plus courante est que vous n’utilisez pas HTTPS pour le paramètre requestUri.
- Attributs