1 implementation of GetNavigateToSearchService
Microsoft.CodeAnalysis.Features (1)
NavigateTo\INavigateToSearcherHost.cs (1)
52public INavigateToSearchService? GetNavigateToSearchService(Project project)
9 references to GetNavigateToSearchService
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (8)
NavigateTo\NavigateToSearcherTests.cs (8)
134hostMock.Setup(h => h.GetNavigateToSearchService(It.IsAny<Project>())).Returns(searchService.Object); 173hostMock.Setup(h => h.GetNavigateToSearchService(It.IsAny<Project>())).Returns(searchService.Object); 212hostMock.Setup(h => h.GetNavigateToSearchService(It.IsAny<Project>())).Returns(searchService.Object); 248hostMock.Setup(h => h.GetNavigateToSearchService(It.IsAny<Project>())).Returns(searchService.Object); 280hostMock.Setup(h => h.GetNavigateToSearchService(It.IsAny<Project>())).Returns(() => null); 338hostMock.Setup(h => h.GetNavigateToSearchService(It.IsAny<Project>())).Returns(() => searchService); 394hostMock.Setup(h => h.GetNavigateToSearchService(It.IsAny<Project>())).Returns(() => searchService); 454hostMock.Setup(h => h.GetNavigateToSearchService(It.IsAny<Project>())).Returns(() => searchService);
Microsoft.CodeAnalysis.Features (1)
NavigateTo\NavigateToSearcher.cs (1)
218=> _host.GetNavigateToSearchService(project) ?? NoOpNavigateToSearchService.Instance;