Apache Lucene.Net 2.1 Class Library API

Field Constructor (String, String, Store, Index, TermVector)

Create a field by specifying its name, value and how it will be saved in the index.

public Field(
   string name,
   string value_Renamed,
   Store store,
   Index index,
   TermVector termVector
);

Parameters

name
The name of the field
value_Renamed
store
Whether
value
should be stored in the index
index
Whether the field should be indexed, and if so, if it should be tokenized before indexing
termVector
Whether term vector should be stored

See Also

Field Class | Lucene.Net.Documents Namespace | Field Constructor Overload List