Observable.Subscribe<TSource> Method (IEnumerable<TSource>, IObserver<TSource>)
Subscribes an observer to an enumerable sequence with the specified source and observer.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
public static IDisposable Subscribe<TSource>( this IEnumerable<TSource> source, IObserver<TSource> observer )
Type Parameters
- TSource
The type of source.
Parameters
- source
- Type: System.Collections.Generic.IEnumerable<TSource>
The enumerable sequence to subscribe to.
- observer
- Type: System.IObserver<TSource>
The observer that will receive notifications from the enumerable sequence.
Return Value
Type: System.IDisposableThe disposable object that can be used to unsubscribe the observer from the enumerable.