This code example gets all alerts for all clients of an MCC account. The effective user (ClientCustomerId or AuthToken) must be an MCC user to get results. This code example won't work with Test Accounts. See https://developers.google.com/adwords/api/docs/test-accounts Tags: AlertService.get
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)
 {
     GetAccountAlerts codeExample = new GetAccountAlerts();
       Console.WriteLine(codeExample.Description);
       try {
     codeExample.Run(new AdWordsUser());
       } catch (Exception ex) {
     Console.WriteLine("An exception occurred while running this code example. {0}",
     ExampleUtilities.FormatException(ex));
       }
 }