Notification.CreateOnNext(T) method¶
Defined in
Type: Notification
Namespace: System.Reactive
Assembly: System.Reactive.dll
Applies to
netstandard2.0
public static Notification<T> CreateOnNext<T>(T value)
Summary: Creates an object that represents an OnNext notification to an observer.
Type parameters
| Name | Description |
|---|---|
T | The type of the elements received by the observer. Upon dematerialization of the notifications into an observable sequence, this type is used as the element type for the sequence. |
Parameters
| Name | Type | Description |
|---|---|---|
value | T | The value contained in the notification. |
Returns: Notification