Authenticate() public method

public Authenticate ( string gameId, string hostname, int httpPort, string username, string password, Success success, Error error ) : IEnumerator
gameId string
hostname string
httpPort int
username string
password string
success Success
error Error
return IEnumerator
Exemplo n.º 1
0
 public void Login(string gameId, string hostname, int httpPort, string username, string password, Authentication.Success success, Authentication.Error error)
 {
     Authentication auth = new Authentication();
     StartCoroutine(auth.Authenticate(gameId, hostname, httpPort, username, password, success, error));
 }
Exemplo n.º 2
0
        public void Login(string gameId, string hostname, int httpPort, string username, string password, Authentication.Success success, Authentication.Error error)
        {
            Authentication auth = new Authentication();

            StartCoroutine(auth.Authenticate(gameId, hostname, httpPort, username, password, success, error));
        }