예제 #1
0
        public void DeleteAktie(string symbol)
        {
            var symbolList = IsolatedStorageService.GetStoredObject <List <string> >(AccessKey);

            if (symbolList != null)
            {
                symbolList.Remove(symbol);
                IsolatedStorageService.Save();
            }
        }
예제 #2
0
        /// <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();
        }
예제 #3
0
 /// <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));
 }