Class FullTextSearchResult
Basic Implementation of a Full Text Search Result.
Implements
Inherited Members
Namespace: VDS.RDF.Query.FullText.Search
Assembly: dotNetRdf.Query.FullText.dll
Syntax
public sealed class FullTextSearchResult : IFullTextSearchResult
Constructors
| Edit this page View SourceFullTextSearchResult(INode, double)
Creates a new Full Text Search Result.
Declaration
public FullTextSearchResult(INode n, double score)
Parameters
Type | Name | Description |
---|---|---|
INode | n | Node. |
double | score | Score. |
FullTextSearchResult(IRefNode, INode, double)
Creates a new Full Text Search Result.
Declaration
public FullTextSearchResult(IRefNode graphName, INode n, double score)
Parameters
Type | Name | Description |
---|---|---|
IRefNode | graphName | Graph name. |
INode | n | Node. |
double | score | Score. |
Properties
| Edit this page View SourceGraphName
Gets the name of the graph that contains the result.
Declaration
public IRefNode GraphName { get; }
Property Value
Type | Description |
---|---|
IRefNode |
GraphUri
Gets the Graph URI of the result.
Declaration
public Uri GraphUri { get; }
Property Value
Type | Description |
---|---|
Uri |
Node
Gets the Node.
Declaration
public INode Node { get; }
Property Value
Type | Description |
---|---|
INode |
Score
Gets the Score.
Declaration
public double Score { get; }
Property Value
Type | Description |
---|---|
double |