Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ILifeCycleView.cs
2{
6 public interface ILifeCycleView
7 {
13
18 Task DoDispose();
19
24
29 }
30}
Interface for views who need to react to life-cycle events.
Task DoDispose()
Method called when the view is disposed, and will not be used more. Use this method to unregister eve...
Task DoDisappearing()
Method called when view is disappearing from the screen.
Task DoInitialize()
Method called when view is initialized for the first time. Use this method to implement registration ...
Task DoAppearing()
Method called when view is appearing on the screen.