表示通过事件向其元素发出信号的数据流。
Namespace:System.Reactive
装配: System.Reactive.dll) 中的 System.Reactive (
语法
'Declaration
Public Interface IEventSource(Of T)
'Usage
Dim instance As IEventSource(Of T)
public interface IEventSource<T>
generic<typename T>
public interface class IEventSource
type IEventSource<'T> = interface end
JScript does not support generic types and methods.
类型参数
- T
事件参数类型。
IEventSource<T> 类型公开以下成员。
事件
名称 | 说明 | |
---|---|---|
![]() |
OnNext | 引发 Next 事件,向数据流中的下一个元素发出信号。 |
顶部