Qbservable.Min Method (IQbservable<Int64>)

Returns the minimum value in 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 Min ( _
    source As IQbservable(Of Long) _
) As IQbservable(Of Long)
'Usage
Dim source As IQbservable(Of Long)
Dim returnValue As IQbservable(Of Long)

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

Parameters

Return Value

Type: System.Reactive.Linq.IQbservable<Int64>
The minimum value in 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 .

See Also

Reference

Qbservable Class

Min Overload

System.Reactive.Linq Namespace