Observer.ToObserver<T> 方法
从通知回调创建观察程序。
Namespace:System.Reactive
装配: System.Reactive.dll) 中的 System.Reactive (
语法
'Declaration
<ExtensionAttribute> _
Public Shared Function ToObserver(Of T) ( _
handler As Action(Of Notification(Of T)) _
) As IObserver(Of T)
'Usage
Dim handler As Action(Of Notification(Of T))
Dim returnValue As IObserver(Of T)
returnValue = handler.ToObserver()
public static IObserver<T> ToObserver<T>(
this Action<Notification<T>> handler
)
[ExtensionAttribute]
public:
generic<typename T>
static IObserver<T>^ ToObserver(
Action<Notification<T>^>^ handler
)
static member ToObserver :
handler:Action<Notification<'T>> -> IObserver<'T>
JScript does not support generic types and methods.
类型参数
- T
观察者参数类型。
参数
- 处理程序 (handler)
类型: System.Action<通知<T>>
处理通知的操作。
返回值
类型: System.IObserver<T>
使用与其接收的每条消息对应的通知调用指定处理程序的观察者对象。
使用说明
在 Visual Basic 和 C# 中,可以在 任何类型为 Action<Notification<T>> 的对象上调用此方法作为实例方法。 当使用实例方法语法调用此方法时,请省略第一个参数。 有关详细信息,请参阅或。