private static void SaveHistory(List <SearchWord> info)
 {
     IsolatedStorageCacheManager <List <SearchWord> > .Store("History.xml", info);
 }
Ejemplo n.º 2
0
 public static void SaveData(RijksDataModel model)
 {
     IsolatedStorageCacheManager <RijksDataModel> .Store("RijksDataModel.xml", model);
 }
 public static void SaveAppInfo(AppInfo appInfo)
 {
     IsolatedStorageCacheManager <AppInfo> .Store("AppInfo.xml", appInfo);
 }
Ejemplo n.º 4
0
 public void Save()
 {
     //Save to Isolated Storage
     IsolatedStorageCacheManager <ObservableCollection <Server> > .Store("servercollection.xml", this);
 }
 public static void SaveClientInfo(ClientInfo clientInfo)
 {
     IsolatedStorageCacheManager <ClientInfo> .Store("ClientInfo.xml", clientInfo);
 }