Class FullTextMatchPropertyFunction
Property Function which does full text matching.
Inheritance
System.Object
FullTextMatchPropertyFunction
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: VDS.RDF.Query.PropertyFunctions
Assembly: dotNetRdf.Query.FullText.dll
Syntax
public class FullTextMatchPropertyFunction : ILeviathanPropertyFunction, 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 |
---|---|
System.Uri |
Variables
Gets the Variables used in the property function.
Declaration
public IEnumerable<string> Variables { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><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<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 |
---|---|---|
System.Collections.Generic.IEnumerable<T><IRefNode> | graphUris | Graph URIs. |
IFullTextSearchProvider | provider | Search Provider. |
string | search | Search Query. |
int | limit | Result Limit. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><IFullTextSearchResult> |
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 |
---|---|---|
System.Collections.Generic.IEnumerable<T><IRefNode> | graphUris | Graph URIs. |
IFullTextSearchProvider | provider | Search Provider. |
string | search | Search Query. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><IFullTextSearchResult> |