Authenticate() публичный Метод

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
Результат IEnumerator
Пример #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));
 }
Пример #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));
        }