Caliburn.Micro.Screen.TryClose C# (CSharp) Method

TryClose() public method

Tries to close this instance by asking its Parent to initiate shutdown or by asking its corresponding view to close.
public TryClose ( ) : void
return void
        public void TryClose() {
            Execute.OnUIThread(() => {
                var closeAction = GetViewCloseAction(null);
                closeAction();
            });
        }

Same methods

Screen::TryClose ( bool dialogResult ) : void