Class BaseUnaryFilter
Abstract Base class for Unary Filters that operate on a single Expression.
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: VDS.RDF.Query.Filters
Assembly: dotNetRDF.dll
Syntax
public abstract class BaseUnaryFilter : ISparqlFilter
Constructors
| Improve this Doc View SourceBaseUnaryFilter(ISparqlExpression)
Creates a new Base Unary Filter.
Declaration
public BaseUnaryFilter(ISparqlExpression arg)
Parameters
Type | Name | Description |
---|---|---|
ISparqlExpression | arg | Argument to the Filter. |
Fields
| Improve this Doc View Source_arg
Expression which is the Argument to the Filter.
Declaration
protected ISparqlExpression _arg
Field Value
Type | Description |
---|---|
ISparqlExpression |
Properties
| Improve this Doc View SourceExpression
Gets the inner expression this Filter uses.
Declaration
public virtual ISparqlExpression Expression { get; }
Property Value
Type | Description |
---|---|
ISparqlExpression |
Variables
Gets the enumeration of Variables used in the Filter.
Declaration
public virtual 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
public abstract void Evaluate(SparqlEvaluationContext context)
Parameters
Type | Name | Description |
---|---|---|
SparqlEvaluationContext | context | Evaluation Context. |
ToString()
Gets the String representation of the Filter.
Declaration
public abstract override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()