BlogEngine.Core.Providers.BlogProvider.LoadSettings C# (CSharp) Méthode

LoadSettings() public abstract méthode

Loads the settings from the provider.
public abstract LoadSettings ( ) : StringDictionary
Résultat System.Collections.Specialized.StringDictionary
        public abstract StringDictionary LoadSettings();

Usage Example

 /// <summary>
 /// Loads the settings from the provider and returns
 /// them in a StringDictionary for the BlogSettings class to use.
 /// </summary>
 public static System.Collections.Specialized.StringDictionary LoadSettings()
 {
     LoadProviders();
     return(_provider.LoadSettings());
 }