Logon() 공개 메소드

public Logon ( string user, string password, int &userID ) : bool
user string
password string
userID int
리턴 bool
예제 #1
0
 public bool Logon(string user, string password, ref int userID)
 {
     SecurityModule sm = new SecurityModule();
     return sm.Logon(user, password, ref userID);
 }
예제 #2
0
        public bool Logon(string user, string password, ref int userID)
        {
            SecurityModule sm = new SecurityModule();

            return(sm.Logon(user, password, ref userID));
        }