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