【发布时间】:2020-03-03 21:13:54
【问题描述】:
我在创建新的 ContentVersion 时遇到问题 - 现在我已使用此代码创建了一个新条目。
var newItem = await client.DeviceAppManagement.MobileApps.Request().AddAsync(new Win32LobApp {});
但我找不到创建新 ContentVersion 的方法。我知道 URL,但不知道要调用的方法。 要调用的 URL 是这样的
POST: https://graph.microsoft.com/beta/deviceAppManagement/mobileApps/{0}/microsoft.graph.win32LobApp/contentVersions
到目前为止,我已经尝试克隆 github 项目 (https://github.com/microsoftgraph/msgraph-beta-sdk-dotnet) 以查看它是如何工作的,但没有运气。而现在,我只是不知道去哪里找。
任何帮助将不胜感激
【问题讨论】:
标签: c# .net-core microsoft-graph-api