gpt4 book ai didi

c# - 微软图形 SDK : Adding Parameters to CalendarView

转载 作者:行者123 更新时间:2023-12-01 22:18:23 25 4
gpt4 key购买 nike

我在 Graph Rest API 中有以下语句,它返回给定日期时间内某个日历的所有事件:

https://graph.microsoft.com/beta/me/calendars/ID/calendarView?startDateTime=2017-02-01T10:31:37Z&endDateTime=2017-02-10T10:31:37Z

我如何使用 SDK 执行此操作?到目前为止我得到了什么:

ICalendarEventsCollectionPage retrievedEvent = await graphClient.Me.Calendars[id].CalendarView...

最佳答案

您可以将这些作为 QueryOptions 添加到请求中。


QueryOption startDateTime = new QueryOption("startDateTime", "2017-02-01T10:31:37Z");
QueryOption endDateTime = new QueryOption("endDateTime", "2017-02-10T10:31:37Z");
List options = new List();
options.Add(startDateTime);
options.Add(endDateTime);

ICalendarCalendarViewCollectionPage retrievedEvents = await graphClient
.Me
.Calendars["id"]
.CalendarView
.Request(options)
.GetAsync();

关于c# - 微软图形 SDK : Adding Parameters to CalendarView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42157863/

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