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

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

Syntax

C#
public StandardAnalyzer(
	Version matchVersion,
	FileInfo stopwords
)
Visual Basic
Public Sub New ( _
	matchVersion As Version, _
	stopwords As FileInfo _
)
Visual C++
public:
StandardAnalyzer(
	Version^ matchVersion, 
	FileInfo^ stopwords
)

Parameters

matchVersion
Type: Lucene.Net.Util..::..Version
Lucene version to match See {@link above}
stopwords
Type: System.IO..::..FileInfo
File to read stop words from

See Also