Qbservable.Min Method (IQbservable<Int32>)
Returns the minimum value in a queryable observable sequence of Int32 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 Integer) _
) As IQbservable(Of Integer)
'Usage
Dim source As IQbservable(Of Integer)
Dim returnValue As IQbservable(Of Integer)
returnValue = source.Min()
public static IQbservable<int> Min(
this IQbservable<int> source
)
[ExtensionAttribute]
public:
static IQbservable<int>^ Min(
IQbservable<int>^ source
)
static member Min :
source:IQbservable<int> -> IQbservable<int>
public static function Min(
source : IQbservable<int>
) : IQbservable<int>
Parameters
- source
Type: System.Reactive.Linq.IQbservable<Int32>
A sequence of Int32 values to determine the minimum value of.
Return Value
Type: System.Reactive.Linq.IQbservable<Int32>
The minimum value in a queryable observable sequence of Int32 values.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservable<Int32>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .