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

LoadStopWords() public abstract method

Loads the stop words used in the search feature.
public abstract LoadStopWords ( ) : StringCollection
return System.Collections.Specialized.StringCollection
        public abstract StringCollection LoadStopWords();

Usage Example

Ejemplo n.º 1
0
 /// <summary>
 /// Loads the stop words from the data store.
 /// </summary>
 public static StringCollection LoadStopWords()
 {
     LoadProviders();
     return(_provider.LoadStopWords());
 }