Пример #1
0
        public DescribeJobFlowsResult Unmarshall(XmlUnmarshallerContext context)
        {
            DescribeJobFlowsResult describeJobFlowsResult = new DescribeJobFlowsResult();
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            if (context.IsStartOfDocument)
            {
                targetDepth += 2;
            }

            while (context.Read())
            {
                if (context.IsStartElement || context.IsAttribute)
                {
                    if (context.TestExpression("JobFlows/member", targetDepth))
                    {
                        describeJobFlowsResult.JobFlows.Add(JobFlowDetailUnmarshaller.GetInstance().Unmarshall(context));

                        continue;
                    }
                }
                else if (context.IsEndElement && context.CurrentDepth < originalDepth)
                {
                    return(describeJobFlowsResult);
                }
            }



            return(describeJobFlowsResult);
        }
Пример #2
0
 public static JobFlowDetailUnmarshaller GetInstance()
 {
     if (instance == null)
     {
         instance = new JobFlowDetailUnmarshaller();
     }
     return(instance);
 }
        public DescribeJobFlowsResult Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeJobFlowsResult describeJobFlowsResult = new DescribeJobFlowsResult();

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


            return(describeJobFlowsResult);
        }
Пример #4
0
        private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeJobFlowsResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

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

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

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

            return;
        }
Пример #5
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeJobFlowsResponse response = new DescribeJobFlowsResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("JobFlows", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <JobFlowDetail, JobFlowDetailUnmarshaller>(
                        JobFlowDetailUnmarshaller.GetInstance());
                    response.JobFlows = unmarshaller.Unmarshall(context);

                    continue;
                }
            }

            return(response);
        }