BaseSimpleLuceneIndexerCreateDocument 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
)
Protected Overridable Function CreateDocument (
graphUri As String,
n As INode,
text As String
) As Document
Parameters
- graphUri
- Type: SystemString
Graph URI. - n
- Type: VDS.RDFINode
Node. - text
- Type: SystemString
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