2 implementations of IsLspEditorSupported
Microsoft.VisualStudio.LanguageServices.Razor (1)
LspEditorFeatureDetector.cs (1)
34public bool IsLspEditorSupported(string documentFilePath)
Microsoft.VisualStudio.LanguageServices.Razor.UnitTests (1)
Cohost\CohostEndpointTest.cs (1)
175public bool IsLspEditorSupported(string documentFilePath) => throw new NotImplementedException();
3 references to IsLspEditorSupported
Microsoft.VisualStudio.LanguageServices.Razor (1)
LanguageClient\RazorFilePathToContentTypeProviderBase.cs (1)
40if (_lspEditorFeatureDetector.IsLspEditorSupported(filePath))
Microsoft.VisualStudio.LanguageServices.Razor.UnitTests (2)
LanguageClient\RazorContentTypeChangeListenerTest.cs (1)
213detector.IsLspEditorSupported(It.IsAny<string>()) == true &&
LspEditorFeatureDetectorTest.cs (1)
35var result = featureDetector.IsLspEditorSupported(@"c:\TestProject\TestFile.cshtml");