CmisSync.SetupController.PageCancelled C# (CSharp) Method

PageCancelled() public method

User pressed the "Cancel" button, hide window.
public PageCancelled ( ) : void
return void
        public void PageCancelled()
        {
            PreviousAddress = null;
            PreviousRepository = "";
            PreviousPath = "";
            ignoredPaths.Clear();

            WindowIsOpen = false;
            HideWindowEvent();
        }

Usage Example

 partial void OnCancel(MonoMac.Foundation.NSObject sender)
 {
     RemoveEvent();
     foreach (AsyncNodeLoader task in Loader.Values)
     {
         task.Cancel();
     }
     Controller.PageCancelled();
 }
All Usage Examples Of CmisSync.SetupController::PageCancelled