GSF.Identity.UserInfo.AuthenticateUser C# (CSharp) Method

AuthenticateUser() public static method

Authenticates the specified user credentials.
This method always returns null under Mono deployments.
public static AuthenticateUser ( string domain, string userName, string password ) : IPrincipal
domain string Domain of user to authenticate.
userName string Username of user to authenticate.
password string Password of user to authenticate.
return IPrincipal
        public static IPrincipal AuthenticateUser(string domain, string userName, string password)
        {
            string errorMessage;
            return AuthenticateUser(domain, userName, password, out errorMessage);
        }

Same methods

UserInfo::AuthenticateUser ( string domain, string userName, string password, string &errorMessage ) : IPrincipal