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

UnvalidateDirectory() public method

Invalidates the director
Starts restarts _UnvalidateTimer
public UnvalidateDirectory ( ) : void
return void
    public void UnvalidateDirectory() {
      Action worker = () => {
        if (this._UnvalidateTimer.Enabled) this._UnvalidateTimer.Stop();
        this._UnvalidateTimer.Start();
      };

      if (this.InvokeRequired)
        this.BeginInvoke((Action)(() => worker()));
      else
        worker();
    }
ShellView