Skip to content

,System.Func{--0,--1})}

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)

View source

Summary: Selects the specified selector.

Type parameters

NameDescription
TSourceThe type of the source.
TResultThe type of the result.

Parameters

NameTypeDescription
sourceIObservableThe source.
selectorFuncThe selector.

Returns: IObservable -- A IObservable.

Exceptions

TypeCondition
System.ArgumentNullExceptionsource or selector.