Class FullTextMatchPropertyFunction
Property Function which does full text matching.
Inheritance
System.Object
FullTextMatchPropertyFunction
Implements
Namespace: VDS.RDF.Query.PropertyFunctions
Assembly: dotNetRDF.Query.FullText.dll
Syntax
public class FullTextMatchPropertyFunction : object, ISparqlPropertyFunction
Constructors
| Improve this Doc 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
| Improve this Doc 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
| Improve this Doc 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<Uri>, IFullTextSearchProvider, String)
Gets the Full Text Results for a specific search query.
Declaration
protected IEnumerable<IFullTextSearchResult> GetResults(IEnumerable<Uri> graphUris, IFullTextSearchProvider provider, string search)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<Uri> | graphUris | Graph URIs. |
IFullTextSearchProvider | provider | Search Provider. |
System.String | search | Search Query. |
Returns
Type | Description |
---|---|
IEnumerable<IFullTextSearchResult> |
GetResults(IEnumerable<Uri>, IFullTextSearchProvider, String, Int32)
Gets the Full Text Results for a specific search query.
Declaration
protected virtual IEnumerable<IFullTextSearchResult> GetResults(IEnumerable<Uri> graphUris, IFullTextSearchProvider provider, string search, int limit)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<Uri> | graphUris | Graph URIs. |
IFullTextSearchProvider | provider | Search Provider. |
System.String | search | Search Query. |
System.Int32 | limit | Result Limit. |
Returns
Type | Description |
---|---|
IEnumerable<IFullTextSearchResult> |