Endjin.Assembly.ChangeDetection.Infrastructure.FileQuery.BeginSearch C# (CSharp) Method

BeginSearch() public method

public BeginSearch ( ) : void
return void
        public void BeginSearch()
        {
            if (this.mySearcher == null && this.SearchDir != "GAC:\\" && !string.IsNullOrEmpty(this.FileMask))
            {
                this.mySearcher = new DirectorySearcherAsync(this.SearchDir, this.FileMask, this.mySearchOption);
                this.mySearcher.BeginSearch();
            }
        }