Method | Description | |
---|---|---|
CanClose ( Action |
Called to check whether or not this instance can close.
|
|
ReactiveScreen ( ) : System |
Creates an instance of ReactiveScreen.
|
|
TryClose ( ) : void |
Tries to close this instance by asking its Parent to initiate shutdown or by asking its corresponding view to close.
|
|
TryClose ( bool dialogResult ) : void |
Closes this instance by asking its Parent to initiate shutdown or by asking it's corresponding view to close. This overload also provides an opportunity to pass a dialog result to it's corresponding view.
|
Method | Description | |
---|---|---|
OnActivate ( ) : System.Threading.Tasks.Task |
Called when activating.
|
|
OnDeactivate ( bool close ) : System.Threading.Tasks.Task |
Called when deactivating.
|
|
OnInitialize ( ) : System.Threading.Tasks.Task |
Called when initializing.
|
Method | Description | |
---|---|---|
GetViewCloseAction ( bool dialogResult ) : System.Action | ||
IActivate ( ) : void | ||
IDeactivate ( bool close ) : void |
public CanClose ( Action |
||
callback | Action |
The implementor calls this action with the result of the close check. |
return | void |
protected OnActivate ( ) : System.Threading.Tasks.Task | ||
return | System.Threading.Tasks.Task |
protected OnDeactivate ( bool close ) : System.Threading.Tasks.Task | ||
close | bool | Inidicates whether this instance will be closed. |
return | System.Threading.Tasks.Task |
protected OnInitialize ( ) : System.Threading.Tasks.Task | ||
return | System.Threading.Tasks.Task |
public TryClose ( bool dialogResult ) : void | ||
dialogResult | bool | The dialog result. |
return | void |