Tag: isolated storage
-
Isolated Storage Helper For C# and XAML based Metro Application
This post and helper class is based on work of Jamie Thomson . I thank him lot for that. Why to use Metro Application Isolated Storage Helper? This helper class helps you to perform Read,Write and Delete of structured data in Isolated storage folders. How to use this? Download Metro Application Isolated Storage Helper from…
-
Protecting password or any data in Windows Phone 7 using Data Protection API
There may be many scenarios, when you need to save data in protected form for your application in isolated storage. Of course you have an option To encrypt the data with some encryption algorithm Save in the isolated storage Problem with above approach is either you will have to store the key in isolated storage…
-
File Handling in Isolated Storage in Silver Light
Objective This article will explain, How to create a text file in IsolatedStorageFile of a SilverLight 2 application. How to write into a text file in IsoltaedStorageFile. How to read a text file from IsolatedStorageFile. How to delete a file from IsolatedStorageFile. Step 1 Create a SilverLight application. By selecting File->New->Project->SilverLight-> SilverLight Application.Design the XAML…
-
Isolated Storage in Silver Light
Why Isolated Storage? SilverLight applications are partially trusted application, which are running on a sandbox environment. So, SilverLight applications are not allowed to access the file system of the client, where it is running for the security reason. Because it is not safe to allow any SilverLight application to access client computer, this may harm…