Partager via


OnlineIdAuthenticator.AuthenticatedSafeCustomerId Propriété

Définition

Retourne l’ID d’un utilisateur qui a été correctement authentifié pour votre application.

Notes

Si vous développez pour Windows 10 ou une version ultérieure, utilisez plutôt les API Windows.Security.Authentication.Web.Core. Pour plus d’informations, consultez Gestionnaire de comptes web.

public:
 property Platform::String ^ AuthenticatedSafeCustomerId { Platform::String ^ get(); };
winrt::hstring AuthenticatedSafeCustomerId();
public string AuthenticatedSafeCustomerId { get; }
var string = onlineIdAuthenticator.authenticatedSafeCustomerId;
Public ReadOnly Property AuthenticatedSafeCustomerId As String

Valeur de propriété

String

Platform::String

winrt::hstring

ID d’un utilisateur qui a été correctement authentifié pour votre application.

Exemples

string authenticatedSafeCustomerId = onlineIdAuthenticator.authenticatedSafeCustomerId;
if (authenticatedSafeCustomerId != string.Empty)
{
    // use
}

Remarques

Cette propriété retourne le même ID utilisateur que la propriété UserIdentity.SafeCustomerId .

Si l’utilisateur n’a pas été correctement authentifié pour votre application, cette valeur de propriété est vide.

Si votre application stocke des données locales en fonction de l’identité de l’utilisateur, vous devez case activée la propriété authenticatedSafeCustomerId pour vous assurer qu’aucune modification n’a été apportée depuis la dernière authentification de votre application. Vérifiez cette propriété lors du lancement ou de l’activation de votre application avant d’obtenir l’identité de l’utilisateur et les tickets associés.

S’applique à