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