Compartilhar via


Método Notification.CreateOnNext<T>

Cria um objeto que representa uma notificação OnNext para um observador.

Namespace:System.Reactive
Assembly: System.Reactive (em System.Reactive.dll)

Sintaxe

'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.

Parâmetros de tipo

  • T
    O tipo de argumento de notificação.

Parâmetros

  • value
    Tipo: T
    O valor contido na notificação.

Valor Retornado

Tipo: System.Reactive.Notification<T>
A notificação OnNext que contém o valor.

Consulte Também

Referência

Classe notification

System.Reactive Namespace