Qbservable.Average Method (IQbservable<Int64>)
Computes the average of a queryable observable sequence of Int64 values.
Namespace: System.Reactive.Linq
Assembly: System.Reactive.Providers (in System.Reactive.Providers.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Average ( _
source As IQbservable(Of Long) _
) As IQbservable(Of Double)
'Usage
Dim source As IQbservable(Of Long)
Dim returnValue As IQbservable(Of Double)
returnValue = source.Average()
public static IQbservable<double> Average(
this IQbservable<long> source
)
[ExtensionAttribute]
public:
static IQbservable<double>^ Average(
IQbservable<long long>^ source
)
static member Average :
source:IQbservable<int64> -> IQbservable<float>
public static function Average(
source : IQbservable<long>
) : IQbservable<double>
Parameters
- source
Type: System.Reactive.Linq.IQbservable<Int64>
A sequence of Int64 values to calculate the average of.
Return Value
Type: System.Reactive.Linq.IQbservable<Double>
The average of a queryable observable sequence of Int64 values.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservable<Int64>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .