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