예제 #1
0
 public static ElasticLoadBalancerUnmarshaller GetInstance()
 {
     if (instance == null)
     {
         instance = new ElasticLoadBalancerUnmarshaller();
     }
     return(instance);
 }
예제 #2
0
        public DescribeElasticLoadBalancersResult Unmarshall(JsonUnmarshallerContext context)
        {
            if (context.CurrentTokenType == JsonUnmarshallerContext.TokenType.Null)
            {
                return(null);
            }
            DescribeElasticLoadBalancersResult describeElasticLoadBalancersResult = new DescribeElasticLoadBalancersResult();

            describeElasticLoadBalancersResult.ElasticLoadBalancers = 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("ElasticLoadBalancers", targetDepth))
                    {
                        describeElasticLoadBalancersResult.ElasticLoadBalancers = new List <ElasticLoadBalancer>();
                        ElasticLoadBalancerUnmarshaller unmarshaller = ElasticLoadBalancerUnmarshaller.GetInstance();
                        while (context.Read())
                        {
                            if ((context.IsArrayElement) && (context.CurrentDepth == targetDepth))
                            {
                                describeElasticLoadBalancersResult.ElasticLoadBalancers.Add(unmarshaller.Unmarshall(context));
                            }
                            else if (context.IsEndArray)
                            {
                                break;
                            }
                        }
                        continue;
                    }
                }
                else if (context.IsEndElement && context.CurrentDepth <= originalDepth)
                {
                    return(describeElasticLoadBalancersResult);
                }
            }


            return(describeElasticLoadBalancersResult);
        }
예제 #3
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeElasticLoadBalancersResponse response = new DescribeElasticLoadBalancersResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("ElasticLoadBalancers", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <ElasticLoadBalancer, ElasticLoadBalancerUnmarshaller>(
                        ElasticLoadBalancerUnmarshaller.GetInstance());
                    response.ElasticLoadBalancers = unmarshaller.Unmarshall(context);

                    continue;
                }
            }

            return(response);
        }
예제 #4
0
        private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeElasticLoadBalancersResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            while (context.Read())
            {
                if (context.TestExpression("ElasticLoadBalancers", targetDepth))
                {
                    context.Read();
                    response.ElasticLoadBalancers = new List <ElasticLoadBalancer>();
                    ElasticLoadBalancerUnmarshaller unmarshaller = ElasticLoadBalancerUnmarshaller.GetInstance();
                    while (context.Read())
                    {
                        JsonToken token = context.CurrentTokenType;
                        if (token == JsonToken.ArrayStart)
                        {
                            continue;
                        }
                        if (token == JsonToken.ArrayEnd)
                        {
                            break;
                        }
                        response.ElasticLoadBalancers.Add(unmarshaller.Unmarshall(context));
                    }
                    continue;
                }

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

            return;
        }