Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Creates an observer from the specified OnNext and OnError actions.
Namespace: System.Reactive
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Shared Function Create(Of T) ( _
onNext As Action(Of T), _
onError As Action(Of Exception) _
) As IObserver(Of T)
'Usage
Dim onNext As Action(Of T)
Dim onError As Action(Of Exception)
Dim returnValue As IObserver(Of T)
returnValue = Observer.Create(onNext, _
onError)
public static IObserver<T> Create<T>(
Action<T> onNext,
Action<Exception> onError
)
public:
generic<typename T>
static IObserver<T>^ Create(
Action<T>^ onNext,
Action<Exception^>^ onError
)
static member Create :
onNext:Action<'T> *
onError:Action<Exception> -> 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.
- onError
Type: System.Action<Exception>
The observer's OnError action implementation.
Return Value
Type: System.IObserver<T>
The observer object implemented using the given actions.