Skip to content

RxCommand.ThrownExceptions property

Defined in

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

Applies to

netstandard2.0

public IObservable<Exception> ThrownExceptions { get; }

View source

Inherited documentation

These docs were inherited from IRxCommand. The member doesn't override them on this type.

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).