Class FullTextFunctionFactory
A SPARQL Expression Factory reserved as a future extension point but not currently compiled or used.
Inheritance
System.Object
FullTextFunctionFactory
Implements
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.Expressions
Assembly: dotNetRdf.Query.FullText.dll
Syntax
public class FullTextFunctionFactory : ISparqlCustomExpressionFactory
Properties
| Improve this Doc View SourceAvailableExtensionAggregates
Gets the URIs of available extension aggregates.
Declaration
public IEnumerable<Uri> AvailableExtensionAggregates { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><System.Uri> |
AvailableExtensionFunctions
Gets the URIs of available extension functions.
Declaration
public IEnumerable<Uri> AvailableExtensionFunctions { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T><System.Uri> |
Methods
| Improve this Doc 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 |
---|---|---|
System.Uri | u | Function URI. |
System.Collections.Generic.List<T><ISparqlExpression> | args | Arguments. |
System.Collections.Generic.Dictionary<TKey, TValue><string, ISparqlExpression> | scalarArguments | Scalar Arguments. |
ISparqlExpression | expr | Resulting SPARQL Expression. |
Returns
Type | Description |
---|---|
System.Boolean | True if a SPARQL Expression could be created, False otherwise. |