Observable.Min Method (IObservable<Single>)

Returns the minimum value in an observable sequence of Float values.

Namespace:  System.Reactive.Linq
Assembly:  System.Reactive (in System.Reactive.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Min ( _
    source As IObservable(Of Single) _
) As IObservable(Of Single)
'Usage
Dim source As IObservable(Of Single)
Dim returnValue As IObservable(Of Single)

returnValue = source.Min()
public static IObservable<float> Min(
    this IObservable<float> source
)
[ExtensionAttribute]
public:
static IObservable<float>^ Min(
    IObservable<float>^ source
)
static member Min : 
        source:IObservable<float32> -> IObservable<float32> 
public static function Min(
    source : IObservable<float>
) : IObservable<float>

Parameters

Return Value

Type: System.IObservable<Single>
The minimum value in an 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 IObservable<Single>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also

Reference

Observable Class

Min Overload

System.Reactive.Linq Namespace