This code example gets and downloads a criteria Ad Hoc report from an XML report definition.
Inheritance: ExampleBase
 /// <summary>
 /// Main method, to run this code example as a standalone application.
 /// </summary>
 /// <param name="args">The command line arguments.</param>
 public static void Main(string[] args)
 {
     DownloadCriteriaReport codeExample = new DownloadCriteriaReport();
       Console.WriteLine(codeExample.Description);
       try {
     string fileName = "INSERT_FILE_NAME_HERE";
     codeExample.Run(new AdWordsUser(), fileName);
       } catch (Exception ex) {
     Console.WriteLine("An exception occurred while running this code example. {0}",
     ExampleUtilities.FormatException(ex));
       }
 }