This is the response object from the ListHostedZones operation.
상속: Amazon.Runtime.AmazonWebServiceResponse
 public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
 {
     ListHostedZonesResponse response = new ListHostedZonesResponse();
     UnmarshallResult(context,response);
     
     return response;
 }        
        private static void UnmarshallResult(XmlUnmarshallerContext context,ListHostedZonesResponse response)
        {
            
            int originalDepth = context.CurrentDepth;
            int targetDepth = originalDepth + 1;
            
            if (context.IsStartOfDocument) 
               targetDepth += 2;
            
            while (context.Read())
            {
                if (context.IsStartElement || context.IsAttribute)
                {
                    if (context.TestExpression("HostedZones/HostedZone", targetDepth))
                    {
                        response.HostedZones.Add(HostedZoneUnmarshaller.GetInstance().Unmarshall(context));
                            
                        continue;
                    }
                    if (context.TestExpression("Marker", targetDepth))
                    {
                        response.Marker = StringUnmarshaller.GetInstance().Unmarshall(context);
                            
                        continue;
                    }
                    if (context.TestExpression("IsTruncated", targetDepth))
                    {
                        response.IsTruncated = BoolUnmarshaller.GetInstance().Unmarshall(context);
                            
                        continue;
                    }
                    if (context.TestExpression("NextMarker", targetDepth))
                    {
                        response.NextMarker = StringUnmarshaller.GetInstance().Unmarshall(context);
                            
                        continue;
                    }
                    if (context.TestExpression("MaxItems", targetDepth))
                    {
                        response.MaxItems = StringUnmarshaller.GetInstance().Unmarshall(context);
                            
                        continue;
                    }
                }
                else if (context.IsEndElement && context.CurrentDepth < originalDepth)
                {
                    return;
                }
            }
                            


            return;
        }
        public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
        {
            ListHostedZonesResponse response = new ListHostedZonesResponse();
            while (context.Read())
            {
                if (context.IsStartElement)
                {
                    response.ListHostedZonesResult = ListHostedZonesResultUnmarshaller.GetInstance().Unmarshall(context);
                    break;
                }
            }

            return response;
        }
 public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) 
 {   
     ListHostedZonesResponse response = new ListHostedZonesResponse();
     
     while (context.Read())
     {
         if (context.IsStartElement)
         {
             UnmarshallResult(context,response);
             break;
         }
     }
          
                 
     return response;
 }