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