オブザーバーに対する OnNext 通知を表す オブジェクトを作成します。
Namespace:System.Reactive
アセンブリ: System.Reactive (System.Reactive.dll)
構文
'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.
型パラメーター
- T
通知引数の型。
パラメーター
- 値
種類: T
通知に含まれる値。
戻り値
種類: System.Reactive.Notification<T>
値を含む OnNext 通知。