AppVeyor.UI.Common.SearchTask.OnStartSearch C# (CSharp) Method

OnStartSearch() protected method

protected OnStartSearch ( ) : void
return void
        protected override void OnStartSearch()
        {
            AppVeyorWindowViewModel.Instance.StopPollingForProjects();
            string searchString = this.SearchQuery.SearchString;
            AppVeyorWindowViewModel.Instance.Search(searchString);
            // Call the implementation of this method in the base class.
            // This sets the task status to complete and reports task completion.
            base.OnStartSearch();
        }