Saving WCF Data to isolated storage and reading it in WP7
How can I store WCF Data or Odata to my WP7 isolated storage and开发者_运维问答 also correctly read these objects later on?
I know this is CTP but its work taking a look considering the title has everything to do with what you asked:
Accessing WCF Data Services from WP7 CTP
Here's an article on how to save to isolated storage:
Working With Isolated Storage
Then of course check MSDN:
How to perform Isolated Storage Tasks
I know you don't want to hear this but it depends on the data and how you want to access it later.
For instance it may make sense to store the data in a database.
In all likelihood you will probably just want to serialize the response and store it in a file though. Then to retrieve it, just read from the file and deserialize.
精彩评论