Skip to content

IConnectableObservable interface

Defined in

Namespace: System.Reactive.Subjects Assembly: System.Reactive.dll Full name: System.Reactive.Subjects.IConnectableObservable<T> Modifiers: public abstract

Summary

        Represents an observable wrapper that can be connected and disconnected from its underlying observable sequence.
        

Applies to

netstandard2.0

Class hierarchy
classDiagram
class IConnectableObservable~T~
class IObservable~T~ {
    <>
}
IObservable~T~ <|.. IConnectableObservable~T~

Implements: IObservable

Methods

NameSummary
ConnectConnects the observable wrapper to its source. All subscribed observers will receive values from the underlying observable sequence as long as the connection is established.