Class ObservableMixins
- Namespace
- ReactiveUI
- Assembly
- ReactiveUI.dll
Extension methods associated with observables.
- Inheritance
-
Observable
Mixins
Methods
WhereNotNull<T>(IObservable<T?>)
Returns only values that are not null. Converts the nullability.
Parameters
observable
IObservable<T>The observable that can contain nulls.
Returns
- IObservable<T>
A non nullable version of the observable that only emits valid values.
Type Parameters
T
The type of value emitted by the observable.