【发布时间】:2020-06-22 19:17:13
【问题描述】:
点击此链接:https://docs.microsoft.com/en-us/graph/api/conversationmember-list?view=graph-rest-beta&tabs=csharp
我尝试使用:
GraphServiceClient graphClient = new GraphServiceClient( authProvider );
var members = await graphClient.Me.Chats["{id}"].Members
.Request()
.GetAsync();
但是,Visual Studio 提供的 IUserRequestBuilder 不包含 Chats 的定义。
从 NuGet 包 3.8.0 使用的 Microsoft.Graph 版本
谢谢
【问题讨论】: