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));
        }