Contains the output of DescribeNetworkAcls.
Inheritance: Amazon.Runtime.AmazonWebServiceResponse
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>  
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
        {
            DescribeNetworkAclsResponse response = new DescribeNetworkAclsResponse();

            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("networkAclSet/item", targetDepth))
                    {
                        var unmarshaller = NetworkAclUnmarshaller.Instance;
                        var item = unmarshaller.Unmarshall(context);
                        response.NetworkAcls.Add(item);
                        continue;
                    }
                } 
            }

            return response;
        }
 public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) 
 {   
     DescribeNetworkAclsResponse response = new DescribeNetworkAclsResponse();
     
     int targetDepth = 2;
     while (context.Read())
     {
         if (context.IsStartElement || context.IsAttribute)
         {
             
             if (context.TestExpression("networkAclSet/item", targetDepth))
             {
                 response.NetworkAcls.Add(NetworkAclUnmarshaller.GetInstance().Unmarshall(context));
                     
                 continue;
             }
         }
     }
          
                 
     return response;
 }