Search Results for

    Show / Hide Table of Contents

    Interface IEventSource<T>

    Represents a data stream signaling its elements by means of an event.

    Namespace: System.Reactive
    Assembly: System.Reactive.Interfaces.dll
    Syntax
    public interface IEventSource<out T>
    Type Parameters
    Name Description
    T

    The type of the event data generated by the event. This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.

    Events

    | Improve this Doc View Source

    OnNext

    Event signaling the next element in the data stream.

    Declaration
    event Action<T> OnNext
    Event Type
    Type Description
    Action<T>
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX