1 implementation of ISpellCheckSpanService
Microsoft.CodeAnalysis.Features (1)
SpellCheck\AbstractSpellCheckSpanService.cs (1)
19internal abstract class AbstractSpellCheckSpanService(char? escapeCharacter) : ISpellCheckSpanService
8 references to ISpellCheckSpanService
Microsoft.CodeAnalysis.CSharp.Features (1)
SpellCheck\CSharpSpellCheckSpanService.cs (1)
12[ExportLanguageService(typeof(ISpellCheckSpanService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (2)
SpellCheck\AbstractSpellCheckSpanTests.cs (2)
29var service = document.GetRequiredLanguageService<ISpellCheckSpanService>();
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (2)
Cohost\Handlers\DocumentSpellCheck.cs (2)
22var service = document.GetLanguageService<ISpellCheckSpanService>();
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Handler\SpellCheck\AbstractSpellCheckingHandler.cs (2)
93var languageService = document.GetLanguageService<ISpellCheckSpanService>();
Handler\SpellCheck\SpellCheckPullCache.cs (1)
13internal record struct SpellCheckState(ISpellCheckSpanService Service, Document Document);