Click or drag to resize

BaseSimpleLuceneIndexer.CreateDocument Method

Creates a Lucene document to add to the index.

Namespace:  VDS.RDF.Query.FullText.Indexing.Lucene
Assembly:  dotNetRDF.Query.FullText (in dotNetRDF.Query.FullText.dll) Version:
Syntax
protected virtual Document CreateDocument(
	string graphUri,
	INode n,
	string text
)

Parameters

graphUri
Type: System.String
Graph URI.
n
Type: VDS.RDF.INode
Node.
text
Type: System.String
Full Text.

Return Value

Type: Document

[Missing <returns> documentation for "M:VDS.RDF.Query.FullText.Indexing.Lucene.BaseSimpleLuceneIndexer.CreateDocument(System.String,VDS.RDF.INode,System.String)"]

Remarks
May be overridden by derived classes that wish to implement custom indexing behaviour.
See Also