System.Reactive.Subjects.Subject<T>
Represents an object that is both an observable sequence as well as an observer.
Each notification is broadcasted to all subscribed observers.
namespace System.Reactive.Subjects
{
public sealed class Subject<[System.Runtime.CompilerServices.Nullable(2)] T> : SubjectBase<T>
{
public Subject();
}
}