예제 #1
0
        public DescribeElasticIpsResult Unmarshall(JsonUnmarshallerContext context)
        {
            if (context.CurrentTokenType == JsonUnmarshallerContext.TokenType.Null)
            {
                return(null);
            }
            DescribeElasticIpsResult describeElasticIpsResult = new DescribeElasticIpsResult();

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


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

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

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

            return;
        }