BlogEngine.Core.Providers.BlogProvider.LoadStopWords C# (CSharp) 메소드

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

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

Usage Example

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