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
19
24
29 }
30}
Interface for views who need to react to life-cycle events.
Task OnDisposeAsync()
Method called when the view is disposed, and will not be used more. Use this method to unregister eve...
Task OnInitializeAsync()
Method called when view is initialized for the first time. Use this method to implement registration ...
Task OnDisappearingAsync()
Method called when view is disappearing from the screen.
Task OnAppearingAsync()
Method called when view is appearing on the screen.