Returns information about the DescribeConversionTasks response and response metadata.
Inheritance: DescribeConversionTasksResult
        public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
        {
            DescribeConversionTasksResponse response = new DescribeConversionTasksResponse();

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

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