IRxCommand interface¶
Defined in
Namespace: ReactiveMarbles.Command
Assembly: ReactiveMarbles.Command.dll
Full name: ReactiveMarbles.Command.IRxCommand
Modifiers: public abstract
Summary¶
Encapsulates a user action behind a reactive interface.
This is for interop inside for the command binding.
Not meant for external use due to the fact it doesn't implement ICommand
to force the user to favor the Reactive style command execution.
Applies to
netstandard2.0
Class hierarchy
classDiagram
class IRxCommand
class ICommand {
<>
}
ICommand <|.. IRxCommand
class IDisposable {
<>
}
IDisposable <|.. IRxCommand
Implements: ICommand, IDisposable
Properties¶
| Name | Summary |
|---|---|
| IsExecuting | Gets an observable whose value indicates whether the command is currently executing. |
| CanCommandExecute | Gets an observable whose value indicates whether the command can currently execute. |
| ThrownExceptions | Gets an observable that ticks any exceptions in command execution logic. |