AIMS_BD_IATI.WebAPI.Models.Authentication.AccountMembershipService.ValidateUser C# (CSharp) Method

ValidateUser() public method

public ValidateUser ( string userName, string password ) : bool
userName string
password string
return bool
        public bool ValidateUser(string userName, string password)
        {
            return _provider.ValidateUser(userName, password);
        }

Same methods

AccountMembershipService::ValidateUser ( string userName, string password, User &user ) : bool