コード例 #1
0
        /// <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)
        {
            AddCampaignTargetingCriteria codeExample = new AddCampaignTargetingCriteria();
              Console.WriteLine(codeExample.Description);
              try {
            long campaignId = long.Parse("INSERT_CAMPAIGN_ID_HERE");
            string feedIdText = "INSERT_LOCATION_FEED_ID_HERE";

            long? feedId = null;
            long temp;

            if (long.TryParse(feedIdText, out temp)) {
              feedId = temp;
            }

            codeExample.Run(new AdWordsUser(), campaignId, feedId);
              } catch (Exception e) {
            Console.WriteLine("An exception occurred while running this code example. {0}",
            ExampleUtilities.FormatException(e));
              }
        }
コード例 #2
0
        /// <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)
        {
            AddCampaignTargetingCriteria codeExample = new AddCampaignTargetingCriteria();

            Console.WriteLine(codeExample.Description);
            try {
                long   campaignId = long.Parse("INSERT_CAMPAIGN_ID_HERE");
                string feedIdText = "INSERT_LOCATION_FEED_ID_HERE";

                long?feedId = null;
                long temp;

                if (long.TryParse(feedIdText, out temp))
                {
                    feedId = temp;
                }

                codeExample.Run(new AdWordsUser(), campaignId, feedId);
            } catch (Exception e) {
                Console.WriteLine("An exception occurred while running this code example. {0}",
                                  ExampleUtilities.FormatException(e));
            }
        }