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