BExplorer.Shell.ShellView.RefreshContents C# (CSharp) Method

RefreshContents() public method

Refreshes the contact (by navigating to the current folder If and only If the current folder is not null)
public RefreshContents ( ) : void
return void
    public void RefreshContents() {
      if (this.CurrentFolder != null)
        Navigate_Full(this.CurrentFolder, true, refresh: true);
    }
ShellView