Interface IEventPatternSource<TEventArgs>
Represents a data stream signaling its elements by means of an event.
Namespace: System.Reactive
Assembly: System.Reactive.Interfaces.dll
Syntax
public interface IEventPatternSource<TEventArgs>
where TEventArgs : EventArgs
Type Parameters
Name | Description |
---|---|
TEventArgs | The type of the event data generated by the event. |
Events
| Improve this Doc View SourceOnNext
Event signaling the next element in the data stream.
Declaration
event EventHandler<TEventArgs> OnNext
Event Type
Type | Description |
---|---|
EventHandler<TEventArgs> |