Builds an analyzer with the stop words from the given file.

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

Syntax

C#
[ObsoleteAttribute("Use StopAnalyzer(Version, File) instead")]
public StopAnalyzer(
	FileInfo stopwordsFile
)
Visual Basic
<ObsoleteAttribute("Use StopAnalyzer(Version, File) instead")> _
Public Sub New ( _
	stopwordsFile As FileInfo _
)
Visual C++
[ObsoleteAttribute(L"Use StopAnalyzer(Version, File) instead")]
public:
StopAnalyzer(
	FileInfo^ stopwordsFile
)

Parameters

stopwordsFile
Type: System.IO..::..FileInfo

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

See Also