Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies an accumulator function over a queryable observable sequence.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Aggregate(Of TSource) ( _
source As IQbservable(Of TSource), _
accumulator As Expression(Of Func(Of TSource, TSource, TSource)) _
) As IQbservable(Of TSource)
'Usage
Dim source As IQbservable(Of TSource)
Dim accumulator As Expression(Of Func(Of TSource, TSource, TSource))
Dim returnValue As IQbservable(Of TSource)
returnValue = source.Aggregate(accumulator)
public static IQbservable<TSource> Aggregate<TSource>(
this IQbservable<TSource> source,
Expression<Func<TSource, TSource, TSource>> accumulator
)
[ExtensionAttribute]
public:
generic<typename TSource>
static IQbservable<TSource>^ Aggregate(
IQbservable<TSource>^ source,
Expression<Func<TSource, TSource, TSource>^>^ accumulator
)
static member Aggregate :
source:IQbservable<'TSource> *
accumulator:Expression<Func<'TSource, 'TSource, 'TSource>> -> IQbservable<'TSource>
JScript does not support generic types and methods.
Type Parameters
- TSource
The type of source.
Parameters
- source
Type: System.Reactive.Linq.IQbservable<TSource>
An observable sequence to aggregate over.
- accumulator
Type: System.Linq.Expressions.Expression<Func<TSource, TSource, TSource>>
An accumulator function to be invoked on each element.
Return Value
Type: System.Reactive.Linq.IQbservable<TSource>
A queryable observable sequence containing a single element with the final accumulator value.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservable<TSource>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .