BlogEngine.Core.Providers.BlogProvider.LoadSettings C# (CSharp) Method

LoadSettings() public abstract method

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

Usage Example

Example #1
0
 /// <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());
 }