无需委派即可获取 Outlook 共享日历 VBA/C#
Get Outlook Shared Calendar without Delegation VBA/C#
正如 GetSharedDefaultFolder method description 所述:
This method is used in a delegation scenario, where one user has delegated access to another user for one or more of their default folders (for example, their shared Calendar folder).
有没有办法在不成为此人代理的情况下获取共享日历约会项目?
例如,我可以执行“文件”->“打开”->“打开用户文件夹”以查看有关任何人或邮箱的busy/free 状态。但显然此权限级别不会启用 GetSharedDefaultFolder() 方法。
您可以在这种情况下使用 Recipient.GetFreeBusy
或 AddressEntry.FreeBusy
。
正如 GetSharedDefaultFolder method description 所述:
This method is used in a delegation scenario, where one user has delegated access to another user for one or more of their default folders (for example, their shared Calendar folder).
有没有办法在不成为此人代理的情况下获取共享日历约会项目?
例如,我可以执行“文件”->“打开”->“打开用户文件夹”以查看有关任何人或邮箱的busy/free 状态。但显然此权限级别不会启用 GetSharedDefaultFolder() 方法。
您可以在这种情况下使用 Recipient.GetFreeBusy
或 AddressEntry.FreeBusy
。