IAsyncObserver<T>.OnNextAsync(T) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.