Skip to content

IRxCommand.ThrownExceptions property

Defined in

Type: IRxCommand Namespace: ReactiveMarbles.Command Assembly: ReactiveMarbles.Command.dll

Applies to

netstandard2.0

IObservable<Exception> ThrownExceptions { get; }

Summary: Gets an observable that ticks any exceptions in command execution logic.

Returns: IObservable

Remarks

        Any exceptions that are not observed via this observable will propagate out and cause the application to be torn
        down. Therefore, you will always want to subscribe to this observable if you expect errors could occur (e.g. if
        your command execution includes network activity).