LoadSettings() 공개 추상적인 메소드

Loads the settings from the provider.
public abstract LoadSettings ( ) : StringDictionary
리턴 System.Collections.Specialized.StringDictionary
예제 #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());
 }