views:

668

answers:

2

How persistent is isolated storage - does Silverlight treat it like a cache, deleting items when it needs more space, or only when the user or application request it?

There also seems to be a wide variety of means to identify isolated storage - machine, application, domain, .... What I'm having trouble with is how these all relate to the user. Is it possible, and if so how, to create and later retrieve an isolated storage file with the following properties:

  • The same file is used, regardless of which Windows user is logged in
  • The same file is used, regardless of the assembly version (updates to the xap). Instead the url would remain constant. This would have to work even offline (out of browser).

Basically I want the isolated storage to persist across application updates, and over different users logging in.

+3  A: 

It is fairly permanent. The user could delete it if they really wanted too, but they would have to go out of their way to do so.

Here is the MSDN documentation for Isolated Storage.

IsolatedStorageFile in Silverlight a couple of statics that let you choose where you want to scope the storage:

  • GetUserStoreForApplication
  • GetUserStoreForSite
consultutah
+2  A: 

The "MachineStore" options are not available in Silverlight, there are just "Application" and "Site". Both are scoped by the user..since the files are stored under the user's AppData on Windows. Apps in-browser and out-of-browser share the same Isolated Storage stores.

[edit..I missed part of your question the first time]: The Isolated Storage stores are not part of the browser cache, so they are not cleared when the browser cache is cleared. As a developer, you can delete things programmatically. As a user, you can use the Silverlight configuration UI (i.e. the right-click menu) to manage the stores - it's called "Application Storage" to the user. Finally, an intrepid user can locate the files on disk and delete them manually...they are hidden so they won't show up in a normal search, but a determined user can still find them.

marktap
Either way, it would seem the application store is never "automatically" deleted. The user or the application has to take deliberate action, which is what I was looking for.
David