BExplorer.Shell.ShellView.UnvalidateDirectory C# (CSharp) 메소드

UnvalidateDirectory() 공개 메소드

Invalidates the director
Starts restarts _UnvalidateTimer
public UnvalidateDirectory ( ) : void
리턴 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