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

CanClose() public method

Called to check whether or not this instance can close.
public CanClose ( Action callback ) : void
callback Action The implementor calls this action with the result of the close check.
return void
        public virtual void CanClose(Action<bool> callback) {
            callback(true);
        }