Show / Hide Table of Contents

Interface ISparqlAggregate

Interface for SPARQL Aggregates which can be used to calculate aggregates over Results.

Namespace: VDS.RDF.Query.Aggregates
Assembly: dotNetRdf.dll
Syntax
public interface ISparqlAggregate

Properties

| Improve this Doc View Source

Arguments

Gets the Arguments of the Aggregate.

Declaration
IEnumerable<ISparqlExpression> Arguments { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<T><ISparqlExpression>
| Improve this Doc View Source

Expression

Gets the Expression that the Aggregate is applied to.

Declaration
ISparqlExpression Expression { get; }
Property Value
Type Description
ISparqlExpression
| Improve this Doc View Source

Functor

Gets the URI/Keyword of the Aggregate.

Declaration
string Functor { get; }
Property Value
Type Description
string
| Improve this Doc View Source

Type

Gets the Type of the Aggregate.

Declaration
SparqlExpressionType Type { get; }
Property Value
Type Description
SparqlExpressionType

Methods

| Improve this Doc View Source

Accept<TResult, TContext, TBinding>(ISparqlAggregateProcessor<TResult, TContext, TBinding>, TContext, IEnumerable<TBinding>)

Declaration
TResult Accept<TResult, TContext, TBinding>(ISparqlAggregateProcessor<TResult, TContext, TBinding> processor, TContext context, IEnumerable<TBinding> bindings)
Parameters
Type Name Description
ISparqlAggregateProcessor<TResult, TContext, TBinding> processor
TContext context
System.Collections.Generic.IEnumerable<T><TBinding> bindings
Returns
Type Description
TResult
Type Parameters
Name Description
TResult
TContext
TBinding

Extension Methods

Extensions.ToSafeString(object)
Extensions.AsEnumerable<T>(T)
  • Improve this Doc
  • View Source
In This Article
  • Properties
    • Arguments
    • Expression
    • Functor
    • Type
  • Methods
    • Accept<TResult, TContext, TBinding>(ISparqlAggregateProcessor<TResult, TContext, TBinding>, TContext, IEnumerable<TBinding>)
  • Extension Methods
Back to top Generated by DocFX