This code example gets and downloads a criteria Ad Hoc report from an AWQL query. See https://developers.google.com/adwords/api/docs/guides/awql for AWQL documentation.
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)
 {
     DownloadCriteriaReportWithAwql codeExample = new DownloadCriteriaReportWithAwql();
       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));
       }
 }