ReadTextAsync(file)在设备上不起作用

时间:2016-04-21 15:04:11

标签: c# xml async-await storage device

对不起我的英语。 在我的Wp 8.1 WinRT中,我创建了一个BackgroundTask。 在模拟器上调试它工作正常,在我的设备上它没有。 在调试期间,我看到问题发生在程序的最后一行

StorageFolder folder = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFolderAsync("Assets");
StorageFile file = await folder.GetFileAsync("TileSmall.xml");
string xml = await Windows.Storage.FileIO.ReadTextAsync(file);

似乎ReadTextAsync()命令在真实设备上不起作用。 有帮助吗? 感谢

0 个答案:

没有答案