Bloom.CollectionChoosing.OpenCreateCloneControl.SelectCollectionAndClose C# (CSharp) Method

SelectCollectionAndClose() public method

public SelectCollectionAndClose ( string path ) : void
path string
return void
        public void SelectCollectionAndClose(string path)
        {
            SelectedPath = path;
            if (!string.IsNullOrEmpty(path))
            {
                if (ReportIfInvalidCollectionToEdit(path)) return;
                //CheckForBeingInDropboxFolder(path);
                _mruList.AddNewPath(path);
                Invoke(DoneChoosingOrCreatingLibrary);
            }
        }