Silverlight 4.0 隔离存储文件
如何通过在浏览器中设置新页面来查看我的IsolatedStorageFile中的所有内容?
谢谢
How to view all the content in my IsolatedStorageFile by setting a new page in your browser?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定“在浏览器中设置新页面”与它有什么关系。我假设您指的是从站点加载不同的 Silverlight 应用程序。
有两个独立商店,每个应用程序一个,每个站点一个。如果您确实打算从一个应用程序迁移到另一个应用程序,那么您将只能在它们之间共享网站商店。
您可以使用
IsolatedStorageFile.GetUserStoreForSite()
访问站点存储。使用
GetDirectories()
和GetFiles()
方法枚举存储中的目录和文件。尝试阅读文档I'm not sure what "setting a new page in your browser" has to do with it. I assume you are refering perhaps to the loading of a different Silverlight app from the site.
There are two Isolated Stores one per application and one per site. If you do mean moving from one app to another then you will only be able to share the site store between them.
You can get access to the site store with
IsolatedStorageFile.GetUserStoreForSite()
.Enumeration of Directories and Files in the store are preformed with the methods
GetDirectories()
andGetFiles()
. Try having a read through the documentation here.