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

            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("launchTemplate", targetDepth))
                    {
                        var unmarshaller = LaunchTemplateUnmarshaller.Instance;
                        response.LaunchTemplate = unmarshaller.Unmarshall(context);
                        continue;
                    }
                }
            }

            return(response);
        }
Exemplo n.º 2
0
        public static CreateLaunchTemplateResponse Unmarshall(UnmarshallerContext context)
        {
            CreateLaunchTemplateResponse createLaunchTemplateResponse = new CreateLaunchTemplateResponse();

            createLaunchTemplateResponse.HttpResponse     = context.HttpResponse;
            createLaunchTemplateResponse.RequestId        = context.StringValue("CreateLaunchTemplate.RequestId");
            createLaunchTemplateResponse.LaunchTemplateId = context.StringValue("CreateLaunchTemplate.LaunchTemplateId");

            return(createLaunchTemplateResponse);
        }