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.
Notifies all subscribed observers with the exception.
Namespace: System.Reactive.Subjects
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Sub OnError ( _
error As Exception _
)
'Usage
Dim instance As Subject
Dim error As Exception
instance.OnError(error)
public void OnError(
Exception error
)
public:
virtual void OnError(
Exception^ error
) sealed
abstract OnError :
error:Exception -> unit
override OnError :
error:Exception -> unit
public final function OnError(
error : Exception
)
Parameters
- error
Type: System.Exception
The exception to send to all subscribed observers.
Implements
IObserver<T>.OnError(Exception)