从Windows Phone 8.1中读取短信

时间:2015-12-13 12:57:41

标签: c# windows windows-phone-8.1 sms message

我尝试在手机中阅读输入消息。 我用了

Windows.ApplicationModel.Chat.ChatMessageStore store = await Windows.ApplicationModel.Chat.ChatMessageManager.RequestStoreAsync();
var msgList = store.GetMessageReader();
IReadOnlyList<Windows.ApplicationModel.Chat.ChatMessage> a = await msgList.ReadBatchAsync();

以及我希望如何获取我的消息属性

            foreach (var item in a)
            {
                System.Diagnostics.Debug.WriteLine(item.Body);
            }

但我有错误:

  

访问被拒绝。

0 个答案:

没有答案