EWS API - 创建日历和审阅权限共享 [英] EWS API - Create calendar and share with reviewer permissions

查看:446
本文介绍了EWS API - 创建日历和审阅权限共享的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一些麻烦的创建和使用Exchange web服务API .NET审核权限共享日历。

I'm having some trouble on creating and share a calendar with review permissions using Exchange Webservice API .NET.

目前,这是我的代码:

Folder addCalendar = new Folder(service);
addCalendar.DisplayName = name;
addCalendar.FolderClass = "IPF.Appointment";
var perm = new FolderPermission(new UserId("reviewer@test.com"),
                            FolderPermissionLevel.Reviewer);
addCalendar.Permissions.Add(perm);
addCalendar.Save(WellKnownFolderName.MsgFolderRoot);



日历中创建,在我的帐户,我可以看到日历和用户的审稿@测试。 。com具有正确的权限

The calendar is created, in my account I can see the calendar and the user 'reviewer@test.com' has the correct permissions.

现在的问题是:日历在审阅者的帐户不显示

推荐答案

我想通了如何以编程方式在组织内通过EWS发送共享邀请。可能不会回答你所有的问题,但它是一个良好的开端,以了解如何深入你得让真正做到这一点。的继承人的

I figured out how to programmatically send a sharing invitation within an organization through EWS. May not answer all your questions, but it's a good start to understanding how in-depth you gotta get to actually do it. Heres the link

这篇关于EWS API - 创建日历和审阅权限共享的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆