IAsyncObserver<T>.OnNextAsync(T) Method

Definition

Provides the observer with new data.

public System.Threading.Tasks.ValueTask OnNextAsync(T value);
abstract member OnNextAsync : 'T -> System.Threading.Tasks.ValueTask
Public Function OnNextAsync (value As T) As ValueTask

Parameters

value
T

The current notification information.

Returns

A ValueTask representing the asynchronous operation.

Applies to