Class FullTextMatchPropertyFunction
Property Function which does full text matching.
Inherited Members
Namespace: VDS.RDF.Query.PropertyFunctions
Assembly: dotNetRdf.Query.FullText.dll
Syntax
public class FullTextMatchPropertyFunction : ILeviathanPropertyFunction, ISparqlPropertyFunction
Constructors
| Edit this page View SourceFullTextMatchPropertyFunction(PropertyFunctionInfo)
Constructs a Full Text Match property function.
Declaration
public FullTextMatchPropertyFunction(PropertyFunctionInfo info)
Parameters
Type | Name | Description |
---|---|---|
PropertyFunctionInfo | info | Property Function information. |
Properties
| Edit this page View SourceFunctionUri
Gets the Function URI for the property function.
Declaration
public Uri FunctionUri { get; }
Property Value
Type | Description |
---|---|
Uri |
Variables
Gets the Variables used in the property function.
Declaration
public IEnumerable<string> Variables { get; }
Property Value
Type | Description |
---|---|
IEnumerable<string> |
Methods
| Edit this page View SourceEvaluate(SparqlEvaluationContext)
Evaluates the property function.
Declaration
public BaseMultiset Evaluate(SparqlEvaluationContext context)
Parameters
Type | Name | Description |
---|---|---|
SparqlEvaluationContext | context | Evaluation Context. |
Returns
Type | Description |
---|---|
BaseMultiset |
GetResults(IEnumerable<IRefNode>, IFullTextSearchProvider, string)
Gets the Full Text Results for a specific search query.
Declaration
protected IEnumerable<IFullTextSearchResult> GetResults(IEnumerable<IRefNode> graphUris, IFullTextSearchProvider provider, string search)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<IRefNode> | graphUris | Graph URIs. |
IFullTextSearchProvider | provider | Search Provider. |
string | search | Search Query. |
Returns
Type | Description |
---|---|
IEnumerable<IFullTextSearchResult> |
GetResults(IEnumerable<IRefNode>, IFullTextSearchProvider, string, int)
Gets the Full Text Results for a specific search query.
Declaration
protected virtual IEnumerable<IFullTextSearchResult> GetResults(IEnumerable<IRefNode> graphUris, IFullTextSearchProvider provider, string search, int limit)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<IRefNode> | graphUris | Graph URIs. |
IFullTextSearchProvider | provider | Search Provider. |
string | search | Search Query. |
int | limit | Result Limit. |
Returns
Type | Description |
---|---|
IEnumerable<IFullTextSearchResult> |