Méthode ReactiveTest.OnNext<T>
Méthode de fabrique pour une notification OnNext enregistrée à un moment donné avec une valeur donnée.
Espace de noms :Microsoft.Reactive.Testing
Assemblée: Microsoft.Reactive.Testing (en Microsoft.Reactive.Testing.dll)
Syntaxe
'Declaration
Public Shared Function OnNext(Of T) ( _
ticks As Long, _
value As T _
) As Recorded(Of Notification(Of T))
'Usage
Dim ticks As Long
Dim value As T
Dim returnValue As Recorded(Of Notification(Of T))
returnValue = ReactiveTest.OnNext(ticks, _
value)
public static Recorded<Notification<T>> OnNext<T>(
long ticks,
T value
)
public:
generic<typename T>
static Recorded<Notification<T>^> OnNext(
long long ticks,
T value
)
static member OnNext :
ticks:int64 *
value:'T -> Recorded<Notification<'T>>
JScript does not support generic types and methods.
Paramètres de type
- T
Paramètres
- ticks
Type : System.Int64
Heure virtuelle enregistrée de la notification OnNext.
- valeur
Type : T
Valeur enregistrée stockée dans la notification OnNext.
Valeur de retour
Type : Microsoft.Reactive.Testing.Recorded<Notification<T>>
Notification OnNext enregistrée.