Aracılığıyla paylaş


PassportIdentity.IsAuthenticated Özellik

Tanım

Kullanıcının Passport yetkilisinde kimlik doğrulaması yapılıp yapılmadığını belirten bir değer alır. Bu sınıf kullanım dışıdır.

public:
 property bool IsAuthenticated { bool get(); };
public bool IsAuthenticated { get; }
member this.IsAuthenticated : bool
Public ReadOnly Property IsAuthenticated As Boolean

Özellik Değeri

Boolean

true kullanıcının Passport kimlik doğrulamasından sorumlu merkezi bir sitede kimliği doğrulanmışsa; aksi takdirde , false.

Uygulamalar

Örnekler

// Declare new PassportIdendity object as variable newPass.
System.Web.Security.PassportIdentity newPass = new System.Web.Security.PassportIdentity();
// Set the string sIsAuth to the users SignIn status (a boolean) converted to a string.
String sIsAuth = newPass.IsAuthenticated.ToString();
' Declare new PassportIdendity object as variable newPass.
Dim newPass As System.Web.Security.PassportIdentity = New System.Web.Security.PassportIdentity()
' Set the string sIsAuth to the users SignIn status (a boolean) converted to a string.
Dim sIsAuth As String = newPass.IsAuthenticated.ToString()

Açıklamalar

Bu sınıf kullanım dışı bırakıldı ve artık desteklenmiyor. Microsoft Passport Network, Windows Live ID ile değiştirildi.

Şunlara uygulanır