Interface ISparqlFilter
Interface for Classes which implement SPARQL Filter Functions.
Namespace: VDS.RDF.Query.Filters
Assembly: dotNetRDF.dll
Syntax
public interface ISparqlFilter
Properties
| Improve this Doc View SourceExpression
Gets the Expression that this Filter uses.
Declaration
ISparqlExpression Expression { get; }
Property Value
Type | Description |
---|---|
ISparqlExpression |
Variables
Gets the enumeration of Variables that are used in the Filter.
Declaration
IEnumerable<string> Variables { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.String> |
Methods
| Improve this Doc View SourceEvaluate(SparqlEvaluationContext)
Evaluates a Filter in the given Evaluation Context.
Declaration
void Evaluate(SparqlEvaluationContext context)
Parameters
Type | Name | Description |
---|---|---|
SparqlEvaluationContext | context | Evaluation Context. |