Example #1
0
		void CancelAsyncSearch() {
			hexMarkerAsyncSearcher?.CancelAndDispose();
			hexMarkerAsyncSearcher = null;
			hexMarkerSearchService = null;
		}
Example #2
0
			public AsyncSearcher(HexSearchService hexSearchService, SearchOptions searchOptions) {
				HexSearchService = hexSearchService;
				SearchOptions = searchOptions;
				cancellationTokenSource = new CancellationTokenSource();
				CancellationToken = cancellationTokenSource.Token;
			}