LoadStopWords() public abstract méthode

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