示例#1
0
        public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
        {
            GetDistributionConfigResponse response = new GetDistributionConfigResponse();

            UnmarshallResult(context, response);
            if (context.ResponseData.IsHeaderPresent("ETag"))
            {
                response.ETag = context.ResponseData.GetHeaderValue("ETag");
            }

            return(response);
        }
示例#2
0
        private static void UnmarshallResult(XmlUnmarshallerContext context, GetDistributionConfigResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            while (context.Read())
            {
                if (context.IsStartElement || context.IsAttribute)
                {
                    if (context.TestExpression("DistributionConfig", targetDepth))
                    {
                        var unmarshaller = DistributionConfigUnmarshaller.Instance;
                        response.DistributionConfig = unmarshaller.Unmarshall(context);
                        continue;
                    }
                }
                else if (context.IsEndElement && context.CurrentDepth < originalDepth)
                {
                    return;
                }
            }

            return;
        }