관찰자에게 OnNext 알림을 나타내는 개체를 만듭니다.
네임스페이스:System.Reactive
어셈블리: System.Reactive(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.
형식 매개 변수
- T
알림 인수 유형입니다.
매개 변수
- 값
형식: T
알림에 포함된 값입니다.
반환 값
형식: System.Reactive.Notification<T>
값을 포함하는 OnNext 알림입니다.