RxBindingExtensions class¶
Attributes: [EditorBrowsable(EditorBrowsableState.1)]
Defined in
Namespace: ReactiveUI.Binding.Observables
Assembly: ReactiveUI.Binding.dll
Full name: ReactiveUI.Binding.Observables.RxBindingExtensions
Modifiers: public static
Summary¶
Lightweight extension methods for IObservable.
These are fully-qualified in generated code to avoid conflicts with
System.Reactive.Linq extension methods when both namespaces are in scope.
Applies to
net10.0, net10.0-browserwasm1.0, net10.0-desktop1.0, net9.0, net9.0-browserwasm1.0, net9.0-desktop1.0, net8.0, net8.0-ios17.5, net8.0-maccatalyst17.5, net8.0-macos14.2, net8.0-macos14.5, net8.0-tvos17.2, netstandard2.1, net462, net481
Methods¶
| Name | Summary |
|---|---|
| static Subscribe | Subscribes to the observable with an action for OnNext. |
| static Select | Projects each element using a selector function. |
| static Switch | Flattens an observable of observables by subscribing to the most recent inner observable. |
| static Skip | Skips the first count elements. |
| static DistinctUntilChanged | Suppresses consecutive duplicate values. |
| static Merge | Merges multiple observables into one. |