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.
Notifies all subscribed observers with the value.
Namespace: System.Reactive.Subjects
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Sub OnNext ( _
value As T _
)
'Usage
Dim instance As ReplaySubject
Dim value As T
instance.OnNext(value)
public void OnNext(
T value
)
public:
virtual void OnNext(
T value
) sealed
abstract OnNext :
value:'T -> unit
override OnNext :
value:'T -> unit
public final function OnNext(
value : T
)
Parameters
- value
Type: T
The value to send to all subscribed observers.