By tag: IsolatedStorage
0
kicks
WP7: Writing and Reading from Isolated Storage
Taking a look at store data in Isolated Storage on the phone
Storing data in Isolated Storage on the phone is critical because there is no SQL database which can run on the phone at this point. In this episode we will look at how we can store and retrieve data to storage on the phone.
0
kicks
Silverlight, Isolated Storage, RIA and Network Changes
In part II of this article I’ll demonstrate how to use save data locally using isolated storage, then update the database using RIA services once you’re back online.
0
kicks
Silverlight: Client-Side Database via LINQ and Isolated Storage
When I did a search on "Silverlight Database" there weren't many results, and none of them actually mentioned a small database that you could embed into your Silverlight application. So, I thought I'd share a solution that I've used to store application data on the client using a combinati...
0
kicks
IsolatedStorage as a Silverlight object cache
Someone posed this question (“Can you use IsolatedStorage in Silverlight as a more reliable browser caching technique?”) to me and I answered with my usual optimistic “in theory, yes” answer. Of course I had never tried it which is horrible to answer that to someone without trying it. In working o...
0
kicks
Tip of the Day #20 – How to Increase your Isolated Storage Quota
Each application by default is given 1 MB of storage space through Isolated Storage where the server is able to store client specific data on the clients machine. So what if you need more than 1 MB? Fortunately, the IsolatedStorageFile object provides a method called IncreaseQuotaTo() that allows a ...
0
kicks
Silverlight Tip of the Day #19: Using Isolated Storage - Silverlight T
Silverlight uses Isolated Storage as a virtual file system to store data in a hidden folder on your machine. It breaks up the data into two separate sections: Section #1 contains administrative information such as disk quota and section #2 contains the actual data. Each Silverlight application is al...
0
kicks
Frictionless data persistence in Silverlight 2
This article will show you how to work with plain objects in Silverlight code, and use attributes to have those values automatically persisted in IsolatedStorage, or a compressed version of IsolatedStorage. You can also use this approach to define your own targets, all without writing any plumbing c...
0
kicks
Compression in Silverlight 2 : porting SharpZipLib
Maximize the user's IsolatedStorage capacity in Silverlight applications. This article provides a way to use stream compression in Silverlight to shrink your storage payload, by porting ICSharpCode's SharpZipLib project into Silverlight 2 Beta 2.
0
kicks
Increase Disk Quota for Isolatated storage in Silverlight
Isolated storage is a facility that lets you read/write (transient) data without worrying about other applications accessing this data. We first introduced this in Silverlight about a year ago with the alpha release. Its support was fairly basic though, and you couldn't store more than 1mb of data p...
0
kicks
Silverlight Isolated Storage for persisting form data
Silverlight has a special version of Isolated Storage which opens up some interesting scenarios when it comes to persistence. One interesting scenario would be to allow a user to save a draft of a form so they could come back later and fill out the rest of the form.
0
kicks
IsolatedStorage dubios unter Vista?
Does IsolatedStorage work as expected under Windows Vista?
0
kicks
Get flying with Isolated Storage in C#
Isolated Storage is a place on the disk where your .NET application always has write permissions. That makes it ideal for applications that need to store information such as settings or XML without first asking for permission. Application types such as ClickOnce or non-installable applications would...