Base class for all aggregate functions that will use extension methods in Enumerable for aggregation.
Definition
Namespace:Telerik.Windows.Data
Assembly:Telerik.Windows.Data.dll
Syntax:
C#
public abstract class EnumerableAggregateFunctionBase : AggregateFunction, INotifyPropertyChanged
Inheritance: objectAggregateFunctionEnumerableAggregateFunctionBase
Derived Classes:
Implements:
Inherited Members
Constructors
C#
protected EnumerableAggregateFunctionBase()
Properties
Gets the name of the aggregate method on the ExtensionMethodsType that will be used for aggregation.
C#
protected abstract string AggregateMethodName { get; }
The name of the aggregate method that will be used.
Gets the type of the extension methods that holds the extension methods for aggregation. For example Enumerable or Queryable.
C#
protected virtual Type ExtensionMethodsType { get; }
The type of that holds the extension methods. The default value is Enumerable.