2 implementations of ILspEditorFeatureDetector
Microsoft.VisualStudio.LanguageServices.Razor (1)
LspEditorFeatureDetector.cs (1)
16RazorActivityLog activityLog) : ILspEditorFeatureDetector, IDisposable
Microsoft.VisualStudio.LanguageServices.Razor.UnitTests (1)
Cohost\CohostEndpointTest.cs (1)
172private class TestLspEditorFeatureDetector : ILspEditorFeatureDetector
23 references to ILspEditorFeatureDetector
Microsoft.VisualStudio.LanguageServices.Razor (11)
LanguageClient\CSHTMLFilePathToContentTypeProvider.cs (1)
15ILspEditorFeatureDetector lspEditorFeatureDetector)
LanguageClient\RazorContentTypeChangeListener.cs (2)
19private readonly ILspEditorFeatureDetector _lspEditorFeatureDetector; 26ILspEditorFeatureDetector lspEditorFeatureDetector,
LanguageClient\RazorFilePathToContentTypeProvider.cs (1)
15ILspEditorFeatureDetector lspEditorFeatureDetector)
LanguageClient\RazorFilePathToContentTypeProviderBase.cs (2)
11ILspEditorFeatureDetector lspEditorFeatureDetector) : IFilePathToContentTypeProvider 14private readonly ILspEditorFeatureDetector _lspEditorFeatureDetector = lspEditorFeatureDetector;
LspEditorFeatureDetector.cs (1)
11[Export(typeof(ILspEditorFeatureDetector))]
RazorLSPTextViewConnectionListener.cs (2)
44ILspEditorFeatureDetector editorFeatureDetector, 52private readonly ILspEditorFeatureDetector _editorFeatureDetector = editorFeatureDetector;
VisualStudioLanguageServerFeatureOptions.cs (2)
14private readonly ILspEditorFeatureDetector _lspEditorFeatureDetector; 18public VisualStudioLanguageServerFeatureOptions(ILspEditorFeatureDetector lspEditorFeatureDetector)
Microsoft.VisualStudio.LanguageServices.Razor.UnitTests (12)
Cohost\CohostEndpointTest.cs (2)
62.AddExcludedPartTypes(typeof(ILspEditorFeatureDetector)) 171[Export(typeof(ILspEditorFeatureDetector)), PartNotDiscoverable]
LanguageClient\RazorContentTypeChangeListenerTest.cs (4)
68var featureDetector = StrictMock.Of<ILspEditorFeatureDetector>(detector => detector.IsRemoteClient() == true); 205ILspEditorFeatureDetector lspEditorFeatureDetector = null, 212lspEditorFeatureDetector ??= new MockRepository(MockBehavior.Strict).OneOf<ILspEditorFeatureDetector>(detector =>
LspEditorFeatureDetectorTest.cs (6)
32var featureDetector = CreateLspEditorFeatureDetector(hasDotNetCoreCSharpCapability); 58var featureDetector = CreateLspEditorFeatureDetector(uiContextService); 84var featureDetector = CreateLspEditorFeatureDetector(uiContextService); 93private ILspEditorFeatureDetector CreateLspEditorFeatureDetector(IUIContextService uiContextService) 96private ILspEditorFeatureDetector CreateLspEditorFeatureDetector( 102private ILspEditorFeatureDetector CreateLspEditorFeatureDetector(