コード例 #1
0
ファイル: ServerWorker.cs プロジェクト: mike-live/RWGame
        private async Task <Game> GetGame(int idGame)
        {
            try
            {
                GetGameResponse currentResponse = await PostData <GetGameResponse>(GetGameCommand, new Dictionary <string, object>() {
                    { "id_game", idGame }
                });

                return(currentResponse.Game);
            }
            catch (System.Net.WebException)
            {
                return(null);
            }
        }
コード例 #2
0
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            GetGameResponse response = new GetGameResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("Game", targetDepth))
                {
                    var unmarshaller = GameDetailsUnmarshaller.Instance;
                    response.Game = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }