Show / Hide Table of Contents

Class BaseUnaryFilter

Abstract Base class for Unary Filters that operate on a single Expression.
Inheritance
System.Object
BaseUnaryFilter
BoundFilter
UnaryExpressionFilter
Implements
ISparqlFilter
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 Source

BaseUnaryFilter(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 Source

Expression

Gets the inner expression this Filter uses.
Declaration
public virtual ISparqlExpression Expression { get; }
Property Value
Type Description
ISparqlExpression
| Improve this Doc View Source

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 Source

Evaluate(SparqlEvaluationContext)

Evaluates a filter in the given Evaluation Context.
Declaration
public abstract void Evaluate(SparqlEvaluationContext context)
Parameters
Type Name Description
SparqlEvaluationContext context Evaluation Context.
| Improve this Doc View Source

ToString()

Gets the String representation of the Filter.
Declaration
public abstract override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()

Implements

ISparqlFilter

Extension Methods

Extensions.AsEnumerable<T>(T)
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • BaseUnaryFilter(ISparqlExpression)
  • Fields
    • _arg
  • Properties
    • Expression
    • Variables
  • Methods
    • Evaluate(SparqlEvaluationContext)
    • ToString()
  • Implements
  • Extension Methods
Back to top Generated by DocFX