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.
Creates an object that represents an OnNext notification to an observer.
Namespace: System.Reactive
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Shared Function CreateOnNext(Of T) ( _
value As T _
) As Notification(Of T)
'Usage
Dim value As T
Dim returnValue As Notification(Of T)
returnValue = Notification.CreateOnNext(value)
public static Notification<T> CreateOnNext<T>(
T value
)
public:
generic<typename T>
static Notification<T>^ CreateOnNext(
T value
)
static member CreateOnNext :
value:'T -> Notification<'T>
JScript does not support generic types and methods.
Type Parameters
- T
The notification argument type.
Parameters
- value
Type: T
The value contained in the notification.
Return Value
Type: System.Reactive.Notification<T>
The OnNext notification containing the value.