public void DeleteAktie(string symbol) { var symbolList = IsolatedStorageService.GetStoredObject <List <string> >(AccessKey); if (symbolList != null) { symbolList.Remove(symbol); IsolatedStorageService.Save(); } }
/// <summary> /// Fügt ein Aktiensymbol in die im /// IsolatedStorage gespeicherte Symbolliste hinzu. /// </summary> /// <param name="aktienGesellschaftsSymbol">Aktiensymbol eines Unternehmens</param> public void AddAktie(string aktienGesellschaftsSymbol) { var symbole = IsolatedStorageService.GetStoredObject <List <string> >(AccessKey); if (symbole == null) { symbole = new List <string>(); } symbole.Add(aktienGesellschaftsSymbol); IsolatedStorageService.StoreObject(symbole, AccessKey); IsolatedStorageService.Save(); }
/// <summary> /// Lädt die im IsolatedStorage gespeicherte Symbolliste /// </summary> /// <returns>Symbolliste aller gespeicherten Aktiengesellschaften</returns> public List <string> LoadAktienSymbole() { return(IsolatedStorageService .GetStoredObject <List <string> >(AccessKey)); }