isolatedstoragefile

Silverlight IsolatedStorage techniques for larger files?

I am using IsolatedStorage in Silverlight 3 to store some settings when a user navigates away from a page hosting the application. Currently i'm using a DataContractSerializer to write the settings to file. In some circumstances the resulting file is quite large, over 10MB (a lot of this size is due to the serializer itself and the XML ...

Silverlight 4.0: How to increase quota in Isolated File Storage

Got this line of code here but its not working. private void Button_Click(object sender, RoutedEventArgs e) { using (IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication()) { long newSpace = isf.Quota + 1523456786435; try { if (true == isf.Increa...

Silverlight 4.0: HyperlinkButton

How to redirect your navigateuri of hyperlinkbutton to your isolatedstorage? or Is there a workaround to display data from isolatedstorage to new browser? ...

How do you get a flat listing of all files in IsolatedStorage?

I need to get a list of all files in a given IsolatedStorage folder. There are sub folders off the root of the IsolatedStorage and these need to be included in the list. The usual System.IO classes can't be used with IsolatedStorage. ...