コード例 #1
0
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ResolveCaseResponse response = new ResolveCaseResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("finalCaseStatus", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.FinalCaseStatus = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("initialCaseStatus", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.InitialCaseStatus = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
コード例 #2
0
        private static void UnmarshallResult(JsonUnmarshallerContext context, ResolveCaseResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

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

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

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

            return;
        }
コード例 #3
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ResolveCaseResponse response = new ResolveCaseResponse();

            context.Read();

            UnmarshallResult(context, response);
            return(response);
        }
コード例 #4
0
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ResolveCaseResponse response = new ResolveCaseResponse();

            context.Read();

            response.ResolveCaseResult = ResolveCaseResultUnmarshaller.GetInstance().Unmarshall(context);

            return(response);
        }