Ejemplo n.º 1
0
        public static UpdateQueueResponse Unmarshall(UnmarshallerContext context)
        {
            UpdateQueueResponse updateQueueResponse = new UpdateQueueResponse();

            updateQueueResponse.HttpResponse = context.HttpResponse;
            updateQueueResponse.RequestId    = context.StringValue("UpdateQueue.RequestId");

            return(updateQueueResponse);
        }
Ejemplo n.º 2
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)
        {
            UpdateQueueResponse response = new UpdateQueueResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("queue", targetDepth))
                {
                    var unmarshaller = QueueUnmarshaller.Instance;
                    response.Queue = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }