Пример #1
0
 public static TrailUnmarshaller GetInstance()
 {
     if (instance == null)
     {
         instance = new TrailUnmarshaller();
     }
     return(instance);
 }
        private static void UnmarshallResult(JsonUnmarshallerContext context, UpdateTrailResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

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

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

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

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

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

                if (context.TestExpression("trail", targetDepth))
                {
                    context.Read();
                    response.Trail = TrailUnmarshaller.GetInstance().Unmarshall(context);
                    continue;
                }

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

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

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

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

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

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

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("trailList", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <Trail, TrailUnmarshaller>(
                        TrailUnmarshaller.GetInstance());
                    response.TrailList = unmarshaller.Unmarshall(context);

                    continue;
                }
            }

            return(response);
        }