BExplorer.Shell.ShellView.Navigate_Full C# (CSharp) Méthode

Navigate_Full() public méthode

Navigate to a folder, set it as the current folder and optionally save the folder's settings to the database.
public Navigate_Full ( IListItemEx destination, Boolean saveFolderSettings, Boolean isInSameTab = false, Boolean refresh = false ) : void
destination IListItemEx The folder you want to navigate to.
saveFolderSettings Boolean Should the folder's settings be saved?
isInSameTab Boolean
refresh Boolean Should the List be Refreshed?
Résultat void
    public void Navigate_Full(IListItemEx destination, Boolean saveFolderSettings, Boolean isInSameTab = false, Boolean refresh = false) {
      this.IsSearchNavigating = false;

      if (destination == null || !destination.IsFolder) return;
      _ResetEvent.Set();
      Navigate(destination, isInSameTab, refresh, this.IsNavigationInProgress);
    }

Same methods

ShellView::Navigate_Full ( String SearchQuery, Boolean saveFolderSettings, Boolean isInSameTab = false, Boolean refresh = false ) : void
ShellView