| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 | // Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the MIT License.// See the LICENSE file in the project root for more information. namespace System.Reactive{    /// <summary>    /// The <b>System.Reactive</b> namespace contains interfaces and classes used throughout the Reactive Extensions library.    /// </summary>    [Runtime.CompilerServices.CompilerGenerated]    internal class NamespaceDoc    {    }}namespace System.Reactive.Concurrency{    /// <summary>    /// The <b>System.Reactive.Concurrency</b> namespace contains interfaces and classes that provide the scheduler infrastructure used by Reactive Extensions to construct and    /// process event streams. Schedulers are used to parameterize the concurrency introduced by query operators, provide means to virtualize time, to process historical data,    /// and to write unit tests for functionality built using Reactive Extensions constructs.    /// </summary>    [Runtime.CompilerServices.CompilerGenerated]    internal class NamespaceDoc    {    }}namespace System.Reactive.Disposables{    /// <summary>    /// The <b>System.Reactive.Disposables</b> namespace contains interfaces and classes that provide a compositional set of constructs used to deal with resource and subscription    /// management in Reactive Extensions. Those types are used extensively within the implementation of Reactive Extensions and are useful when writing custom query operators or    /// schedulers.    /// </summary>    [Runtime.CompilerServices.CompilerGenerated]    internal class NamespaceDoc    {    }}namespace System.Reactive.Linq{    /// <summary>    /// The <b>System.Reactive.Linq</b> namespace contains interfaces and classes that support expressing queries over observable sequences, using Language Integrated Query (LINQ).    /// Query operators are made available as extension methods for <see cref="IObservable{T}"/> and <see cref="IQbservable{T}"/> defined on the Observable and Qbservable classes, respectively.    /// </summary>    [Runtime.CompilerServices.CompilerGenerated]    internal class NamespaceDoc    {    }}namespace System.Reactive.Subjects{    /// <summary>    /// The <b>System.Reactive.Subjects</b> namespace contains interfaces and classes to represent subjects, which are objects implementing both <see cref="IObservable{T}"/> and <see cref="IObserver{T}"/>.    /// Subjects are often used as sources of events, allowing one party to raise events and allowing another party to write queries over the event stream. Because of their ability to    /// have multiple registered observers, subjects are also used as a facility to provide multicast behavior for event streams in queries.    /// </summary>    [Runtime.CompilerServices.CompilerGenerated]    internal class NamespaceDoc    {    }}namespace System.Reactive.PlatformServices{    /// <summary>    /// The <b>System.Reactive.PlatformServices</b> namespace contains interfaces and classes used by the runtime infrastructure of Reactive Extensions.    /// Those are not intended to be used directly from user code and are subject to change in future releases of the product.    /// </summary>    [Runtime.CompilerServices.CompilerGenerated]    internal class NamespaceDoc    {    }}namespace System.Reactive.Joins{    /// <summary>    /// The <b>System.Reactive.Joins</b> namespace contains classes used to express join patterns over observable sequences using fluent method syntax.    /// </summary>    [Runtime.CompilerServices.CompilerGenerated]    internal class NamespaceDoc    {    }}
 |