Esempio n. 1
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeTrustedAdvisorCheckSummariesResponse response = new DescribeTrustedAdvisorCheckSummariesResponse();

            context.Read();

            UnmarshallResult(context, response);
            return(response);
        }
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeTrustedAdvisorCheckSummariesResponse response = new DescribeTrustedAdvisorCheckSummariesResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("summaries", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <TrustedAdvisorCheckSummary, TrustedAdvisorCheckSummaryUnmarshaller>(TrustedAdvisorCheckSummaryUnmarshaller.Instance);
                    response.Summaries = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
Esempio n. 3
0
        private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeTrustedAdvisorCheckSummariesResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            while (context.Read())
            {
                if (context.TestExpression("summaries", targetDepth))
                {
                    context.Read();

                    if (context.CurrentTokenType == JsonToken.Null)
                    {
                        response.Summaries = null;
                        continue;
                    }
                    response.Summaries = new List <TrustedAdvisorCheckSummary>();
                    TrustedAdvisorCheckSummaryUnmarshaller unmarshaller = TrustedAdvisorCheckSummaryUnmarshaller.GetInstance();
                    while (context.Read())
                    {
                        JsonToken token = context.CurrentTokenType;
                        if (token == JsonToken.ArrayStart)
                        {
                            continue;
                        }
                        if (token == JsonToken.ArrayEnd)
                        {
                            break;
                        }
                        response.Summaries.Add(unmarshaller.Unmarshall(context));
                    }
                    continue;
                }

                if (context.CurrentDepth <= originalDepth)
                {
                    return;
                }
            }

            return;
        }