Isolated Storage
The PersistenceFramework allows you to save the layout of UIElements in Isolated Storage. For that purpose the telerik:PersistenceManager.StorageId attached property has to be set for each UIElement that needs to be persisted. The property is used to create a file in the isolated storage for each persisted control, where the control's properties will be kept.
Example 1: Setting the PersistenceManager.StorageId property
Example 2: Using the IsolatedStorageProvider methods
The IsolatedStorageProvider.SaveToStorage() method will save the properties of all controls for which the telerik:PersistenceManager.StorageId attached property is set. In Example 2 all properties of the RadTreeView and the ContentControl will be saved:
Figure 1: Result from Example 1
Expand Condiments and select Gula Malacca. Add description for the item in the Details ContentControl. Then hit Save:
Now change the layout of the UserControl - for example collapse Condiments and expand Confections. Then Select Maxilaku and add description for it.
If you want to retrieve the previous state of the controls in your page, all you need to do is hit Load:
IsolatedStorageProvider Members
The IsolatedStorageProvider exposes the following members:
SaveToStorage(): Saves the UIElement properties in the associated file in the isolated storage.
LoadFromStorage(): Loads the persisted properties from the UIElement's associated file.
DeleteIsolatedStorageFiles(): Deletes the saved isolated storage files.
-
QuotaRequested event: When the application requests a larger quota from the isolated storage, the user is prompted to allow or deny the request. The QuotaRequested event is fired when the user makes a choice. The event receives two arguments:
- A sender argument that receives the IsolatedStorageProvider that is requesting the additional quota.
- A QuotaRequestedEventArgs object that gives access to:
- FileStreams: A dictionary that contains the names of the isolated storage files as keys, and the file streams as values.
- IsSuccess: A property of type bool that indicates whether the user has allowed the quota increase.
- RequestedBytes - A property of type long that represents the size of the requested quota.
Manager: A protected property, which exposes the PersistenceManager instance used by the class. You can inherit the IsolatedStorageProvider in order to access it.
GetIsolatedStoreOverride(): A protected method, which returns an IsolatedStorageFile. It allows you to work with the physical representation of the isolated storage files. You can inherit the IsolatedStorageProvider in order to access it.
When you are using the IsolatedStorageProvider, you can check the persistence storage and the controls that are persisted using the PersistenceManager.GetStorage() static method. It returns an object of type ObjectStorage that exposes the following properties:
- Count: This property is of type int and it gets the number of persisted objects.
- Items: This property gets the collection of persisted objects.
- Keys: This property gets the collection of the persisted objects' StorageId values.