Brewage.Web.Controllers.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);
        }