Class FullTextSearchResult
Basic Implementation of a Full Text Search Result.
Inheritance
System.Object
FullTextSearchResult
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: VDS.RDF.Query.FullText.Search
Assembly: dotNetRdf.Query.FullText.dll
Syntax
public sealed class FullTextSearchResult : IFullTextSearchResult
Constructors
| Improve this Doc 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
| Improve this Doc 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 |
---|---|
System.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 |