L'argument du registre/configurationSettings/XML semble toujours très actif. Je les ai toutes utilisées, au fur et à mesure que la technologie a progressé, mais ma préférée est basée sur Le système de Threed combiné avec Stockage isolé .
L'exemple suivant permet le stockage d'un objet nommé properties dans un fichier en stockage isolé. Par exemple :
AppSettings.Save(myobject, "Prop1,Prop2", "myFile.jsn");
Les propriétés peuvent être récupérées en utilisant :
AppSettings.Load(myobject, "myFile.jsn");
Il ne s'agit que d'un échantillon, qui n'est pas représentatif des meilleures pratiques.
internal static class AppSettings
{
internal static void Save(object src, string targ, string fileName)
{
Dictionary<string, object> items = new Dictionary<string, object>();
Type type = src.GetType();
string[] paramList = targ.Split(new char[] { ',' });
foreach (string paramName in paramList)
items.Add(paramName, type.GetProperty(paramName.Trim()).GetValue(src, null));
try
{
// GetUserStoreForApplication doesn't work - can't identify.
// application unless published by ClickOnce or Silverlight
IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForAssembly();
using (IsolatedStorageFileStream stream = new IsolatedStorageFileStream(fileName, FileMode.Create, storage))
using (StreamWriter writer = new StreamWriter(stream))
{
writer.Write((new JavaScriptSerializer()).Serialize(items));
}
}
catch (Exception) { } // If fails - just don't use preferences
}
internal static void Load(object tar, string fileName)
{
Dictionary<string, object> items = new Dictionary<string, object>();
Type type = tar.GetType();
try
{
// GetUserStoreForApplication doesn't work - can't identify
// application unless published by ClickOnce or Silverlight
IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForAssembly();
using (IsolatedStorageFileStream stream = new IsolatedStorageFileStream(fileName, FileMode.Open, storage))
using (StreamReader reader = new StreamReader(stream))
{
items = (new JavaScriptSerializer()).Deserialize<Dictionary<string, object>>(reader.ReadToEnd());
}
}
catch (Exception) { return; } // If fails - just don't use preferences.
foreach (KeyValuePair<string, object> obj in items)
{
try
{
tar.GetType().GetProperty(obj.Key).SetValue(tar, obj.Value, null);
}
catch (Exception) { }
}
}
}
1 votes
S'agit-il d'une application .NET WinForms ? Si oui, sur quelle version de .NET développez-vous ?
2 votes
Oui, il s'agit d'une application WinForms du cadre .NET version 3.5.
1 votes
Avez-vous besoin de sauver les valeurs des mots de passe ou des secrets ? Il faut peut-être cryptage