PassportIdentity.IsAuthenticated 屬性

定義

取得值,表示是否以 Passport 授權來驗證使用者。 這個類別已被取代。

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

屬性值

如果使用者是由負責 Passport 驗證的中央網站來驗證,則為 true,否則為 false

實作

範例

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

備註

此類別已被取代,不再支援。 Microsoft Passport 網路已由 Windows Live ID 取代。

適用於