gpt4 book ai didi

c# - Google API Where() 和 When() 命名空间

转载 作者:行者123 更新时间:2023-12-04 17:03:51 25 4
gpt4 key购买 nike

我想知道要向我的项目添加什么(导入?引用?)以便能够将 Where()- 和 When()-methods 用于 Google 日历。

代码:

Where eventLocation = new Where();
eventLocation.ValueString = "South Tennis Courts";
entry.Locations.Add(eventLocation);

When eventTime = new When(DateTime.Now, DateTime.Now.AddHours(2));
entry.Times.Add(eventTime);

错误:
Error 1 The type or namespace name 'Where' could not be found (are you missing a using directive or an assembly reference?)

Error 3 The type or namespace name 'When' could not be found (are you missing a using directive or an assembly reference?)

更新:
当前进口:
using Google.GData.Client;
using Google.GData.Calendar;
using Google.GData.Extensions;
using Google.GData.AccessControl;

最佳答案

Google API doc page for the Where class列出您需要添加为引用的 DLL 以及该程序集中的命名空间:

Namespace: Google.GData.Extensions

Assembly: Google.GData.Extensions (in Google.GData.Extensions.dll)


这对我在 VS2012 中正常工作,使用来自 this page 的最新 API 下载 (2.2.0) ,日期为 2013 年 6 月。MSI 硬链接(hard link) here .
如果您查看作为 API 设置的一部分安装的 DLL 列表(很明显的猜测是 Google.GData.Calendar.dll),这不是一个明显的位置。

关于c# - Google API Where() 和 When() 命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22919244/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com