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:
Syntaxprotected 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: 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