Share via


SingleSignOnMembershipProvider.ValidateUser Method (String, String)

 

This method supports the AD FS infrastructure and is not intended to be used directly from your code.

Namespace:   System.Web.Security.SingleSignOn
Assembly:  System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)

Syntax

public override bool ValidateUser(
    string name,
    string password
)
public:
virtual bool ValidateUser(
    String^ name,
    String^ password
) override
override ValidateUser : 
        name:string *
        password:string -> bool
Public Overrides Function ValidateUser (
    name As String,
    password As String
) As Boolean

Parameters

  • password
    Type: System.String

    The password for the specified user.

Return Value

Type: System.Boolean

true if the user is validated; otherwise, false.

See Also

SingleSignOnMembershipProvider Class
System.Web.Security.SingleSignOn Namespace

Return to top