Class FullTextFunctionFactory
A SPARQL Expression Factory reserved as a future extension point but not currently compiled or used.
Implements
Inherited Members
Namespace: VDS.RDF.Query.Expressions
Assembly: dotNetRdf.Query.FullText.dll
Syntax
public class FullTextFunctionFactory : ISparqlCustomExpressionFactory
Properties
| Edit this page View SourceAvailableExtensionAggregates
Gets the URIs of available extension aggregates.
Declaration
public IEnumerable<Uri> AvailableExtensionAggregates { get; }
Property Value
Type | Description |
---|---|
IEnumerable<Uri> |
AvailableExtensionFunctions
Gets the URIs of available extension functions.
Declaration
public IEnumerable<Uri> AvailableExtensionFunctions { get; }
Property Value
Type | Description |
---|---|
IEnumerable<Uri> |
Methods
| Edit this page View SourceTryCreateExpression(Uri, List<ISparqlExpression>, Dictionary<string, ISparqlExpression>, out ISparqlExpression)
Tries to create an expression.
Declaration
public bool TryCreateExpression(Uri u, List<ISparqlExpression> args, Dictionary<string, ISparqlExpression> scalarArguments, out ISparqlExpression expr)
Parameters
Type | Name | Description |
---|---|---|
Uri | u | Function URI. |
List<ISparqlExpression> | args | Arguments. |
Dictionary<string, ISparqlExpression> | scalarArguments | Scalar Arguments. |
ISparqlExpression | expr | Resulting SPARQL Expression. |
Returns
Type | Description |
---|---|
bool | True if a SPARQL Expression could be created, False otherwise. |