ClientWindowsAuthenticationMembershipProvider.ValidateUser 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用操作系統所提供的身分識別,自動驗證目前的使用者。
public:
override bool ValidateUser(System::String ^ username, System::String ^ password);
public override bool ValidateUser (string username, string password);
override this.ValidateUser : string * string -> bool
Public Overrides Function ValidateUser (username As String, password As String) As Boolean
參數
傳回
一律 true
。
例外狀況
範例
下列範例程式代碼示範如何使用此方法來使用 Windows 驗證來驗證使用者。
private bool ValidateUsingWindowsAuthentication()
{
ClientWindowsAuthenticationMembershipProvider authProvider =
System.Web.Security.Membership.Provider as
ClientWindowsAuthenticationMembershipProvider;
// Call ValidateUser and pass null values for the parameters.
// This call always returns true.
return authProvider.ValidateUser(null, null);
}
Private Function ValidateUsingWindowsAuthentication() As Boolean
Dim authProvider As ClientWindowsAuthenticationMembershipProvider = _
CType(System.Web.Security.Membership.Provider, _
ClientWindowsAuthenticationMembershipProvider)
' Call ValidateUser and pass Nothing for the parameters.
' This call always returns true.
Return authProvider.ValidateUser(Nothing, Nothing)
End Function
備註
當您將應用程式設定為使用 ClientWindowsAuthenticationMembershipProvider 類別時,static
Membership.ValidateUser 方法會使用此方法進行實作。
ClientWindowsAuthenticationMembershipProvider.ValidateUser 方法會自動驗證目前的使用者,並將 static
Thread.CurrentPrincipal 屬性設定為包含目前 WindowsIdentity的 ClientRolePrincipal 物件。 如果應用程式已設定 ClientRoleProvider,您可以使用 ClientRolePrincipal 物件,從角色服務擷取使用者角色資訊。