如何从FeedItem []项中获取stringValue

时间:2015-08-12 11:18:05

标签: c# google-adwords

我正在从谷歌adWords下载一些数据 我的代码如下所示:

    public static FeedItem[] GetFeedItems(string _cid)
    {
        var user = CurrentOAuthUser.ConfigureUserForOAuthInstance(_cid).GetCurrentUser();
        FeedItemService feedItemService = (FeedItemService)user.GetService(
            AdWordsService.v201502.FeedItemService);
        FeedItemPage page = feedItemService.query(string.Format("Select FeedItemId, " +
            "AttributeValues, Scheduling where PlaceholderType = 1"));
        return page.entries;
    }

我的结果如下:enter image description here

现在我需要获取蓝色的信息,这个对象的字符串值。 我用foreach试过这个但没有成功。 有谁知道我是如何获得这个价值的?

1 个答案:

答案 0 :(得分:0)

试试这个

foreach(var attribute in resultList)
 foreach(var val in attribute.attributeValues)
  foreach(string x in val.stringvalues)
   Console.Write(x)