1 implementation of ISpellCheckSpanService
Microsoft.CodeAnalysis.Features (1)
SpellCheck\AbstractSpellCheckSpanService.cs (1)
17internal abstract class AbstractSpellCheckSpanService : ISpellCheckSpanService
7 references to ISpellCheckSpanService
Microsoft.CodeAnalysis.CSharp.Features (1)
SpellCheck\CSharpSpellCheckSpanService.cs (1)
13[ExportLanguageService(typeof(ISpellCheckSpanService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (2)
SpellCheck\AbstractSpellCheckSpanTests.cs (2)
30var service = document.GetRequiredLanguageService<ISpellCheckSpanService>();
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Handler\SpellCheck\AbstractSpellCheckingHandler.cs (3)
95var languageService = document.GetLanguageService<ISpellCheckSpanService>(); 152ISpellCheckSpanService service,
Microsoft.CodeAnalysis.VisualBasic.Features (1)
SpellCheck\VisualBasicSpellCheckSpanService.vb (1)
12<ExportLanguageService(GetType(ISpellCheckSpanService), LanguageNames.VisualBasic), [Shared]>