Observable.Max Method
Include Protected Members
Include Inherited Members
Returns the maximum value.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
Max(IObservable<Decimal>) | Returns the maximum value in an observable sequence of Decimal values. | |
Max(IObservable<Double>) | Returns the maximum value in an observable sequence of Double values. | |
Max(IObservable<Int32>) | Returns the maximum value in an observable sequence of Int32 values. | |
Max(IObservable<Int64>) | Returns the maximum value in an observable sequence of Int64 values. | |
Max(IObservable<Nullable<Decimal>>) | Returns the maximum value in an observable sequence of nullable Decimal values. | |
Max(IObservable<Nullable<Double>>) | Returns the maximum value in an observable sequence of nullable Double values. | |
Max(IObservable<Nullable<Int32>>) | Returns the maximum value in an observable sequence of nullable Int32 values. | |
Max(IObservable<Nullable<Int64>>) | Returns the maximum value in an observable sequence of nullable Int64 values. | |
Max(IObservable<Nullable<Single>>) | Returns the maximum value in an observable sequence of nullable Float values. | |
Max(IObservable<Single>) | Returns the maximum value in an observable sequence of Float values. | |
Max<TSource>(IObservable<TSource>) | Returns the maximum element in an observable sequence. | |
Max<TSource>(IObservable<TSource>, IComparer<TSource>) | Returns the maximum value in an observable sequence according to the specified comparer. |
Top