我尝试在手机中阅读输入消息。 我用了
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);
}
但我有错误:
访问被拒绝。