LoadStopWords() public abstract method

Loads the stop words used in the search feature.
public abstract LoadStopWords ( ) : StringCollection
return System.Collections.Specialized.StringCollection
Example #1
0
 /// <summary>
 /// Loads the stop words from the data store.
 /// </summary>
 public static StringCollection LoadStopWords()
 {
     LoadProviders();
     return(_provider.LoadStopWords());
 }