/// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
        {
            CreateVpnGatewayResponse response = new CreateVpnGatewayResponse();

            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            if (context.IsStartOfDocument)
            {
                targetDepth = 2;
            }

            while (context.ReadAtDepth(originalDepth))
            {
                if (context.IsStartElement || context.IsAttribute)
                {
                    if (context.TestExpression("vpnGateway", targetDepth))
                    {
                        var unmarshaller = VpnGatewayUnmarshaller.Instance;
                        response.VpnGateway = unmarshaller.Unmarshall(context);
                        continue;
                    }
                }
            }

            return(response);
        }
        public static CreateVpnGatewayResponse Unmarshall(UnmarshallerContext context)
        {
            CreateVpnGatewayResponse createVpnGatewayResponse = new CreateVpnGatewayResponse();

            createVpnGatewayResponse.HttpResponse = context.HttpResponse;
            createVpnGatewayResponse.RequestId    = context.StringValue("CreateVpnGateway.RequestId");
            createVpnGatewayResponse.VpnGatewayId = context.StringValue("CreateVpnGateway.VpnGatewayId");
            createVpnGatewayResponse.Name         = context.StringValue("CreateVpnGateway.Name");
            createVpnGatewayResponse.OrderId      = context.LongValue("CreateVpnGateway.OrderId");

            return(createVpnGatewayResponse);
        }
Example #3
0
        public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
        {
            CreateVpnGatewayResponse response = new CreateVpnGatewayResponse();

            int targetDepth = 2;

            while (context.Read())
            {
                if (context.IsStartElement || context.IsAttribute)
                {
                    if (context.TestExpression("vpnGateway", targetDepth))
                    {
                        response.VpnGateway = VpnGatewayUnmarshaller.GetInstance().Unmarshall(context);

                        continue;
                    }
                }
            }


            return(response);
        }