Udostępnij za pośrednictwem


PassportIdentity.IsAuthenticated Właściwość

Definicja

Pobiera wartość wskazującą, czy użytkownik jest uwierzytelniany w urzędzie usługi Passport. Ta klasa jest przestarzała.

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

Wartość właściwości

Boolean

true jeśli użytkownik jest uwierzytelniany w centralnej lokacji odpowiedzialnej za uwierzytelnianie za usługę Passport; w przeciwnym razie , false.

Implementuje

Przykłady

// 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()

Uwagi

Ta klasa jest przestarzała i nie jest już obsługiwana. Usługa Microsoft Passport Network została zastąpiona przez Windows Live ID.

Dotyczy