In my Windows Phone application ( Silverlight application ), I want the user to automatically join the application after a successful login. Ie I do not want the user to log in every time.
I achieved this through the concept of an isolated storage file . I. First, I created a directory, and I created an isolated file system for the storage system and saved the email and password credentials in some file.
When I stopped debugging and started it back, my stream reader reads the email credentials from this file successfully.
My problem is , when I close the emulator and open it, I could not read from this file (in particular, the directory itself does not exist!). I also want to know my isolated storage is stored in a real Windows phone?
How can i fix this?
user1099894
source share