我如何知道约会是否是私人的
我使用 Exchange Server 托管 API。我如何知道约会是否是私人的? “Appointment”类中似乎没有方法或属性。
I use Exchange Server Managed API. How do I find out if an appointment is private?
There doesn't seem to be a method or property in the "Appointment" class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 灵敏度属性。
Look at the Sensitivity property.
抱歉,我似乎无法对上面 @Stuart 的答案发表评论,也不想提出新问题。
如果您使用的是
ExchangeService.FindAppointments
,则返回的项目为Microsoft.Exchange.WebServices.Data.Appointment
Sensitivity
属性似乎处于同一级别?请问你(@Luke)如何访问该属性?
您需要使用 ExchangeService.LoadPropertiesForItems 吗?
Apologies, I don't seem to be able to comment on @Stuart's answer above and didn't want to create a new question.
If you're using
ExchangeService.FindAppointments
, the returned Items areMicrosoft.Exchange.WebServices.Data.Appointment
The
Sensitivity
property seems to be at the same level?How do you (did you @Luke) access that property please?
Do you need to use
ExchangeService.LoadPropertiesForItems
?