Returns information about the DescribeBundleTasks response and response metadata.
Inheritance: DescribeBundleTasksResult
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>  
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
        {
            DescribeBundleTasksResponse response = new DescribeBundleTasksResponse();

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

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