IQbservable<T>
Provides functionality to evaluate queries against a specific data source wherein the type of the data is known.
namespace System.Reactive.Linq
{
public interface IQbservable<out T> : IQbservable, IObservable<T>
{
}
}