Exemplo n.º 1
0
        public static HighScoreTable[] GetTables(string gameId, string privateKey)
        {
            var request = ScoreRequestFactory.CreateGetTablesRequest(gameId, privateKey);

            return(request.Process(null));
        }
Exemplo n.º 2
0
        public static IAsyncResult BeginGetTables(string gameId, string privateKey, AsyncCallback callback = null, object asyncState = null)
        {
            var request = ScoreRequestFactory.CreateGetTablesRequest(gameId, privateKey);

            return(request.Begin(callback, asyncState));
        }