GSF.Identity.UserInfo.AuthenticateUser C# (CSharp) 메소드

AuthenticateUser() 공개 정적인 메소드

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.
리턴 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