public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ListStepsResponse response = new ListStepsResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("Steps", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <StepSummary, StepSummaryUnmarshaller>(
                        StepSummaryUnmarshaller.GetInstance());
                    response.Steps = unmarshaller.Unmarshall(context);

                    continue;
                }

                if (context.TestExpression("Marker", targetDepth))
                {
                    response.Marker = StringUnmarshaller.GetInstance().Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
 public static StepSummaryUnmarshaller GetInstance()
 {
     if (instance == null)
     {
         instance = new StepSummaryUnmarshaller();
     }
     return(instance);
 }
Exemple #3
0
        private static void UnmarshallResult(JsonUnmarshallerContext context, ListStepsResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

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

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

                if (context.TestExpression("Marker", targetDepth))
                {
                    context.Read();
                    response.Marker = StringUnmarshaller.GetInstance().Unmarshall(context);
                    continue;
                }

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

            return;
        }