在Microsoft Graph中获取监视器URL

时间:2019-06-17 09:40:14

标签: c# onedrive

使用Microsoft Graph在个人OneDrive上复制文件。下面的代码工作正常,并且文件被复制。根据文档,由于复制是异步操作,因此该操作应返回监视器url。

如何获取监视器URL?以下代码中的PostAsync返回null。

        var destination = new Microsoft.Graph.ItemReference
        {
            Path = $"/drive/root:{toPath}"
        };

        // result is null, where is monitor URL?
        var result = await graphClient.Me.Drive.Root.ItemWithPath(fromFilePath)
            .Copy(null, destination)
            .Request()
            .PostAsync();

0 个答案:

没有答案