Example #1
0
 public static TrustedAdvisorCheckDescriptionUnmarshaller GetInstance()
 {
     if (instance == null)
     {
         instance = new TrustedAdvisorCheckDescriptionUnmarshaller();
     }
     return(instance);
 }
        public DescribeTrustedAdvisorChecksResult Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeTrustedAdvisorChecksResult describeTrustedAdvisorChecksResult = new DescribeTrustedAdvisorChecksResult();

            describeTrustedAdvisorChecksResult.Checks = null;

            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            while (context.Read())
            {
                if ((context.IsKey) && (context.CurrentDepth == targetDepth))
                {
                    context.Read();
                    context.Read();

                    if (context.TestExpression("Checks", targetDepth))
                    {
                        describeTrustedAdvisorChecksResult.Checks = new List <TrustedAdvisorCheckDescription>();
                        TrustedAdvisorCheckDescriptionUnmarshaller unmarshaller = TrustedAdvisorCheckDescriptionUnmarshaller.GetInstance();
                        while (context.Read())
                        {
                            if ((context.IsArrayElement) && (context.CurrentDepth == targetDepth))
                            {
                                describeTrustedAdvisorChecksResult.Checks.Add(unmarshaller.Unmarshall(context));
                            }
                            else if (context.IsEndArray)
                            {
                                break;
                            }
                        }
                        continue;
                    }
                }
                else if (context.IsEndElement && context.CurrentDepth <= originalDepth)
                {
                    return(describeTrustedAdvisorChecksResult);
                }
            }


            return(describeTrustedAdvisorChecksResult);
        }
        private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeTrustedAdvisorChecksResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

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

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

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

            return;
        }
Example #4
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeTrustedAdvisorChecksResponse response = new DescribeTrustedAdvisorChecksResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("checks", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <TrustedAdvisorCheckDescription, TrustedAdvisorCheckDescriptionUnmarshaller>(
                        TrustedAdvisorCheckDescriptionUnmarshaller.GetInstance());
                    response.Checks = unmarshaller.Unmarshall(context);

                    continue;
                }
            }

            return(response);
        }