Condividi tramite


OnlineIdAuthenticator.AuthenticatedSafeCustomerId Proprietà

Definizione

Restituisce l'ID di un utente che è stato autenticato correttamente per l'app.

Nota

Se si sta sviluppando per Windows 10 o versione successiva, usare invece le API Windows.Security.Authentication.Web.Core. Per altre informazioni, vedere Gestione account 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

Valore della proprietà

String

Platform::String

winrt::hstring

ID di un utente che è stato autenticato correttamente per l'app.

Esempio

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

Commenti

Questa proprietà restituisce lo stesso ID utente della proprietà UserIdentity.SafeCustomerId .

Se l'utente non è stato autenticato correttamente per l'app, questo valore della proprietà è vuoto.

Se l'app archivia i dati locali in base all'identità dell'utente, è necessario controllare la proprietà autenticataSafeCustomerId per assicurarsi che non siano state apportate modifiche dall'ultima autenticazione per l'app. Controllare questa proprietà quando l'app viene avviata o attivata, prima di ottenere l'identità utente e i ticket associati.

Si applica a