Observable.Min Method (IObservable<Nullable<Int64>>)

Returns the minimum value in an observable sequence of nullable Int64 values.

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

Syntax

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

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

Parameters

Return Value

Type: System.IObservable<Nullable<Int64>>
The minimum value in an observable sequence of nullable Int64 values.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<Nullable<Int64>>. 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