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 e) { | |
Console.WriteLine("An exception occurred while running this code example. {0}", | |
ExampleUtilities.FormatException(e)); | |
} | |
} public override string Description { get { return "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."; } } In description I got error of - no suitable method found and form filename which file name i write? |