3 implementations of IDocumentHighlightsService
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\DocumentHighlighting\FSharpDocumentHighlightsService.cs (1)
56internal class FSharpDocumentHighlightsService : IDocumentHighlightsService
Microsoft.CodeAnalysis.Features (2)
DocumentHighlighting\AbstractDocumentHighlightsService.cs (1)
25IDocumentHighlightsService
ExternalAccess\VSTypeScript\Api\VSTypeScriptDocumentHighlightsServiceBase.cs (1)
16internal abstract class VSTypeScriptDocumentHighlightsServiceBase : IDocumentHighlightsService
13 references to IDocumentHighlightsService
Microsoft.CodeAnalysis.CSharp.Features (1)
DocumentHighlighting\CSharpDocumentHighlightsService.cs (1)
23[ExportLanguageService(typeof(IDocumentHighlightsService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.EditorFeatures (2)
ReferenceHighlighting\ReferenceHighlightingViewTaggerProvider.cs (2)
155var service = document.GetLanguageService<IDocumentHighlightsService>();
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
ReferenceHighlighting\DocumentHighlightsServiceTests.vb (1)
46Dim service = csharpDocument.GetLanguageService(Of IDocumentHighlightsService)
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\DocumentHighlighting\FSharpDocumentHighlightsService.cs (1)
55[ExportLanguageService(typeof(IDocumentHighlightsService), LanguageNames.FSharp)]
Microsoft.CodeAnalysis.Features (3)
DocumentHighlighting\IEmbeddedLanguageDocumentHighlighter.cs (2)
11/// <inheritdoc cref="IDocumentHighlightsService"/> 14/// <inheritdoc cref="IDocumentHighlightsService.GetDocumentHighlightsAsync"/>
ExternalAccess\VSTypeScript\Api\VSTypeScriptDocumentHighlightsServiceBase.cs (1)
21Task<ImmutableArray<DocumentHighlights>> IDocumentHighlightsService.GetDocumentHighlightsAsync(
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Highlights\DocumentHighlightHandler.cs (2)
86var documentHighlightService = document.GetRequiredLanguageService<IDocumentHighlightsService>();
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Services\DocumentHighlights\RemoteDocumentHighlightsService.cs (2)
42var service = document.GetRequiredLanguageService<IDocumentHighlightsService>();
Microsoft.CodeAnalysis.VisualBasic.Features (1)
DocumentHighlighting\VisualBasicDocumentHighlightsService.vb (1)
13<ExportLanguageService(GetType(IDocumentHighlightsService), LanguageNames.VisualBasic), [Shared]>