SteamDroidServer.Steam.Steam3.Authorize C# (CSharp) 메소드

Authorize() 공개 메소드

Authorizes against an open connection using the specified username and password
public Authorize ( String username, String password ) : bool
username String The username to use
password String The password to use
리턴 bool
        public bool Authorize(String username, String password)
        {
            return this.username == username && this.password == password;
        }