Rock.Store.StoreService.AuthenicateUser C# (CSharp) Method

AuthenicateUser() public method

Authenicates the user.
public AuthenicateUser ( string username, string password ) : bool
username string The username.
password string The password.
return bool
        public bool AuthenicateUser( string username, string password )
        {
            string errorResponse = string.Empty;
            return AuthenicateUser( username, password, out  errorResponse );
        }

Same methods

StoreService::AuthenicateUser ( string username, string password, string &errorResponse ) : bool