共用方式為


OnlineIdAuthenticator.AuthenticatedSafeCustomerId 屬性

定義

傳回已成功驗證應用程式之使用者的識別碼。

注意

如果您要針對Windows 10或更新版本進行開發,請改用Windows.Security.Authentication.Web.Core API。 如需詳細資訊,請參閱 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

屬性值

String

Platform::String

winrt::hstring

已成功驗證應用程式之使用者的識別碼。

範例

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

備註

這個屬性會傳回與 UserIdentity.SafeCustomerId 屬性相同的使用者識別碼。

如果使用者未成功驗證您的應用程式,這個屬性值會是空的。

如果您的應用程式會根據使用者的身分識別來儲存本機資料,您必須檢查 authenticatedSafeCustomerId 屬性,以確保您的應用程式自上次驗證之後沒有任何變更。 在取得使用者身分識別和相關聯的票證之前,請在啟動或啟用您的應用程式時檢查此屬性。

適用於