Interface ICanActivate
- Namespace
- ReactiveUI
- Assembly
- ReactiveUI.dll
This Interface is used by the framework to explicitly provide activation events. Usually you can ignore this unless you are porting RxUI to a new UI Toolkit.
public interface ICanActivate
- Extension Methods
Properties
Activated
Gets a observable which is triggered when the ViewModel is activated.
IObservable<Unit> Activated { get; }
Property Value
- IObservable<Unit>
Deactivated
Gets a observable which is triggered when the ViewModel is deactivated.
IObservable<Unit> Deactivated { get; }
Property Value
- IObservable<Unit>