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