/// <summary>
        /// Reset only the search results of the ViewModel to a blank/new/empty state
        /// </summary>
        public void ClearResults()
        {
            this.SearchResults.Clear();
            //CurrentFilesLoaded.Clear();

            // Remove any previously loaded search results, since we are now loading a new one.
            if (CurrentFilesLoaded.Contains(WorkspaceFilename))
            {
                CurrentFilesLoaded.Remove(WorkspaceFilename);
            }

            WorkspaceFilename = null;

            this.SearchStartTime = null;
            this.SearchEndTime   = null;

            //txtblkSequenceSearchResult
        }