Class FullTextSearchResult
Basic Implementation of a Full Text Search Result.
Inheritance
System.Object
FullTextSearchResult
Implements
Namespace: VDS.RDF.Query.FullText.Search
Assembly: dotNetRDF.Query.FullText.dll
Syntax
public sealed class FullTextSearchResult : object, IFullTextSearchResult
Constructors
| Improve this Doc View SourceFullTextSearchResult(Uri, INode, Double)
Creates a new Full Text Search Result.
Declaration
public FullTextSearchResult(Uri graphUri, INode n, double score)
Parameters
Type | Name | Description |
---|---|---|
Uri | graphUri | Graph URI. |
INode | n | Node. |
System.Double | score | Score. |
FullTextSearchResult(INode, Double)
Creates a new Full Text Search Result.
Declaration
public FullTextSearchResult(INode n, double score)
Parameters
Type | Name | Description |
---|---|---|
INode | n | Node. |
System.Double | score | Score. |
Properties
| Improve this Doc View SourceGraphUri
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 |
---|---|
System.Double |