Silverlight 4.0 隔离存储文件

发布于 2024-08-24 11:29:57 字数 63 浏览 3 评论 0原文

如何通过在浏览器中设置新页面来查看我的IsolatedStorageFile中的所有内容?

谢谢

How to view all the content in my IsolatedStorageFile by setting a new page in your browser?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

彡翼 2024-08-31 11:29:57

我不确定“在浏览器中设置新页面”与它有什么关系。我假设您指的是从站点加载不同的 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() and GetFiles(). Try having a read through the documentation here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文