ReplaySubject<T>
Represents an object that is both an observable sequence as well as an observer.
Each notification is broadcasted to all subscribed and future observers, subject to buffer trimming policies.
public ReplaySubject()
Initializes a new instance of the ReplaySubject<T> class.
Initializes a new instance of the ReplaySubject<T> class with the specified scheduler.
Initializes a new instance of the ReplaySubject<T> class with the specified buffer size.
Initializes a new instance of the ReplaySubject<T> class with the specified buffer size and scheduler.
Initializes a new instance of the ReplaySubject<T> class with the specified window.
Initializes a new instance of the ReplaySubject<T> class with the specified window and scheduler.
Initializes a new instance of the ReplaySubject<T> class with the specified buffer size and window.
Initializes a new instance of the ReplaySubject<T> class with the specified buffer size, window and scheduler.