Observer.Create<T> Method (Action<T>)

Creates an observer from the specified OnNext action.

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

Syntax

'Declaration
Public Shared Function Create(Of T) ( _
    onNext As Action(Of T) _
) As IObserver(Of T)
'Usage
Dim onNext As Action(Of T)
Dim returnValue As IObserver(Of T)

returnValue = Observer.Create(onNext)
public static IObserver<T> Create<T>(
    Action<T> onNext
)
public:
generic<typename T>
static IObserver<T>^ Create(
    Action<T>^ onNext
)
static member Create : 
        onNext:Action<'T> -> IObserver<'T> 
JScript does not support generic types and methods.

Type Parameters

  • T
    The observer argument type.

Parameters

  • onNext
    Type: System.Action<T>
    The observer's OnNext action implementation.

Return Value

Type: System.IObserver<T>
The observer object implemented using the given actions.

See Also

Reference

Observer Class

Create Overload

System.Reactive Namespace