Now that I am back from holiday, it is time to blog a little.
I've been messing around with Isolated Storage for the past few days, and there is some interesting issues.
It seems to me i can increase the Isolated Storage quota (the amount of allocated isolated storage), but I don't seem to have anyway to reduce it (in the beta)?
The following code will ask the user permission to increase the quota to 1Mb (default starting quota is 100Kb)
using (IsolatedStorageFile userStore =
IsolatedStorageFile.GetUserStoreForApplication())
{
userStore.TryIncreaseQuotaTo(1048576);
}
which is all lovely and stuff, but I have no way to reduce the quota size in the future.