Observable.Create<TSource> Method (Func<IObserver<TSource>, Action>)
Creates an observable sequence from a specified subscribe method implementation with a specified subscribe.
Namespace: System.Reactive.Linq
Assembly: System.Reactive (in System.Reactive.dll)
public static IObservable<TSource> Create<TSource>( Func<IObserver<TSource>, Action> subscribe )
Type Parameters
- TSource
The type of source.
Parameters
- subscribe
- Type: System.Func<IObserver<TSource>, Action>
The implementation of the resulting observable sequence's subscribe method, returning an action delegate that will be wrapped in an IDisposable.
Return Value
Type: System.IObservable<TSource>The observable sequence with the specified implementation for the subscribe method.