Calls 5 parameter add with false for term vector positions and offsets.

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

Syntax

C#
public void Add(
	string name,
	bool isIndexed,
	bool storeTermVector
)
Visual Basic
Public Sub Add ( _
	name As String, _
	isIndexed As Boolean, _
	storeTermVector As Boolean _
)
Visual C++
public:
void Add(
	String^ name, 
	bool isIndexed, 
	bool storeTermVector
)

Parameters

name
Type: System..::..String
The name of the field
isIndexed
Type: System..::..Boolean
true if the field is indexed
storeTermVector
Type: System..::..Boolean
true if the term vector should be stored

See Also