Exemple #1
0
 public static ServiceErrorUnmarshaller GetInstance()
 {
     if (instance == null)
     {
         instance = new ServiceErrorUnmarshaller();
     }
     return(instance);
 }
        public DescribeServiceErrorsResult Unmarshall(JsonUnmarshallerContext context)
        {
            if (context.CurrentTokenType == JsonUnmarshallerContext.TokenType.Null)
            {
                return(null);
            }
            DescribeServiceErrorsResult describeServiceErrorsResult = new DescribeServiceErrorsResult();

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


            return(describeServiceErrorsResult);
        }
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeServiceErrorsResponse response = new DescribeServiceErrorsResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("ServiceErrors", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <ServiceError, ServiceErrorUnmarshaller>(
                        ServiceErrorUnmarshaller.GetInstance());
                    response.ServiceErrors = unmarshaller.Unmarshall(context);

                    continue;
                }
            }

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

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

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

            return;
        }