Builds an analyzer which removes words in the provided array.

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

Syntax

C#
[ObsoleteAttribute("Use StopAnalyzer(Set, boolean) or StopAnalyzer(Version, Set) instead ")]
public StopAnalyzer(
	string[] stopWords
)
Visual Basic
<ObsoleteAttribute("Use StopAnalyzer(Set, boolean) or StopAnalyzer(Version, Set) instead ")> _
Public Sub New ( _
	stopWords As String() _
)
Visual C++
[ObsoleteAttribute(L"Use StopAnalyzer(Set, boolean) or StopAnalyzer(Version, Set) instead ")]
public:
StopAnalyzer(
	array<String^>^ stopWords
)

Parameters

stopWords
Type: array<System..::..String>[]()[][]

[Missing <param name="stopWords"/> documentation for "M:Lucene.Net.Analysis.StopAnalyzer.#ctor(System.String[])"]

See Also