Initializes a new instance of the TermVectorMapper class

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

Syntax

C#
protected internal TermVectorMapper(
	bool ignoringPositions,
	bool ignoringOffsets
)
Visual Basic
Protected Friend Sub New ( _
	ignoringPositions As Boolean, _
	ignoringOffsets As Boolean _
)
Visual C++
protected public:
TermVectorMapper(
	bool ignoringPositions, 
	bool ignoringOffsets
)

Parameters

ignoringPositions
Type: System..::..Boolean
true if this mapper should tell Lucene to ignore positions even if they are stored
ignoringOffsets
Type: System..::..Boolean
similar to ignoringPositions

See Also