我正在尝试从 Windows Phone 日历访问约会

public async Task <AppointmentStore> getAppointments()
    {

        AppointmentStore appointmentStore = await  AppointmentManager.RequestStoreAsync(AppointmentStoreAccessType.AllCalendarsReadOnly);
        return appointmentStore;

    }

我已经在 PackageManifest 文件的“功能”选项卡中“启用”了“约会”。在堆栈溢出的其他解决方案中,建议启用我所做的所需权限。我还以管理员身份运行了 Visual Studio。但是,系统继续抛出相同的未授权访问异常。

最佳答案

使用 AppointmentStoreAccessType.AppCalendarsReadWrite 时不会抛出异常。

使用 AppointmentStoreAccessType.AllCalendarsReadOnly 会引发未经授权的异常。这无害,不会使应用程序崩溃。这只是意味着您没有 ChangeTracker 属性。

您仍然可以使用 appointmentStore 对象并获取约会列表和其他内容。检查屏幕截图。

我希望你现在可以继续你的项目吗?

关于c# - AppointmentManager.RequestStoreAsync 在 Windows Phone 中引发 system.unauthorizedaccessexception,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31391560/

10-09 15:33