[Missing <summary> documentation for "M:Lucene.Net.Analysis.StopFilter.MakeStopSet(System.Collections.IList,System.Boolean)"]

Namespace: Lucene.Net.Analysis
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public static Hashtable MakeStopSet(
	IList stopWords,
	bool ignoreCase
)
Visual Basic
Public Shared Function MakeStopSet ( _
	stopWords As IList, _
	ignoreCase As Boolean _
) As Hashtable
Visual C++
public:
static Hashtable^ MakeStopSet(
	IList^ stopWords, 
	bool ignoreCase
)

Parameters

stopWords
Type: System.Collections..::..IList
A List of Strings representing the stopwords
ignoreCase
Type: System..::..Boolean
if true, all words are lower cased first

Return Value

A Set containing the words

See Also