Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Invokes the observer's method corresponding to the notification.
Namespace: System.Reactive
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public MustOverride Sub Accept ( _
observer As IObserver(Of T) _
)
'Usage
Dim instance As Notification
Dim observer As IObserver(Of T)
instance.Accept(observer)
public abstract void Accept(
IObserver<T> observer
)
public:
virtual void Accept(
IObserver<T>^ observer
) abstract
abstract Accept :
observer:IObserver<'T> -> unit
public abstract function Accept(
observer : IObserver<T>
)
Parameters
- observer
Type: System.IObserver<T>
The observer to invoke the notification on.