ObservableBase.SubscribeCore(IObserver) method¶
Defined in
Type: ObservableBaseSystem.Reactive
Assembly: System.Reactive.dll
Applies to
netstandard2.0
protected abstract IDisposable SubscribeCore(IObserver<T> observer)
Summary: Implement this method with the core subscription logic for the observable sequence.
Parameters
| Name | Type | Description |
|---|---|---|
observer | IObserver | Observer to send notifications to. |
Returns: IDisposable -- Disposable object representing an observer's subscription to the observable sequence.