Click or drag to resize
LuceneSearchDocument.Add Method
Adds the given field to the document

Namespace: CMS.Search.Lucene3
Assembly: CMS.Search.Lucene3 (in CMS.Search.Lucene3.dll) Version: 13.0.131
Syntax
C#
public void Add(
	string name,
	string value,
	bool store = true,
	bool tokenize = false
)

Parameters

name
Type: System.String
Field name
value
Type: System.String
Field value
store (Optional)
Type: System.Boolean
If true, the field value is stored
tokenize (Optional)
Type: System.Boolean
If true, the field value is tokenized

Implements

ILuceneSearchDocument.Add(String, String, Boolean, Boolean)
See Also