Table of Contents

Class ObservableMixins

Namespace
ReactiveUI
Assembly
ReactiveUI.dll

Extension methods associated with observables.

public static class ObservableMixins : Object
Inheritance
ObservableMixins

Methods

WhereNotNull<T>(IObservable<T?>)

Returns only values that are not null. Converts the nullability.

public static IObservable<T> WhereNotNull<T>(this IObservable<T?> observable)

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.