Ejemplo n.º 1
0
        public static string RemoveByKey(string gameId, string privateKey, string username, string userToken, string key)
        {
            var request = DataStoreRequestFactory.CreateRemoveRequest(gameId, privateKey, username, userToken, key);

            return(request.Process(null));
        }
Ejemplo n.º 2
0
        public static IAsyncResult BeginRemoveByKey(string gameId, string privateKey, string username, string userToken, string key, AsyncCallback callback = null, object asyncState = null)
        {
            var request = DataStoreRequestFactory.CreateRemoveRequest(gameId, privateKey, username, userToken, key);

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