SteamDroidServer.Steam.Steam3.Authorize C# (CSharp) Method

Authorize() public method

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
return bool
        public bool Authorize(String username, String password)
        {
            return this.username == username && this.password == password;
        }