Observer.ToNotifier < T > 方法
從觀察者建立通知回呼。
Namespace:System.Reactive
裝配: System.Reactive.dll) 中的 System.Reactive (
Syntax
'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 > 類型的任何物件上呼叫此方法作為實例方法。 使用執行個體方法語法呼叫這個方法時,請省略第一個參數。 如需詳細資訊,請參閱 或 。