LinqMixins.Select(IObservable, Func) method¶
Defined in
Type: LinqMixins
Namespace: Minimalist.Reactive
Assembly: Minimalist.Reactive.dll
Applies to
netstandard2.0
public static IObservable<TResult> Select<TSource, TResult>(this IObservable<TSource> source, Func<TSource, TResult> selector)
Summary: Selects the specified selector.
Type parameters
| Name | Description |
|---|---|
TSource | The type of the source. |
TResult | The type of the result. |
Parameters
| Name | Type | Description |
|---|---|---|
source | IObservable | The source. |
selector | Func | The selector. |
Returns: IObservable
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | source or selector. |