1 type derived from QuickInfoService
Microsoft.CodeAnalysis.Features (1)
QuickInfo\QuickInfoServiceWithProviders.cs (1)
20internal abstract class QuickInfoServiceWithProviders : QuickInfoService
19 references to QuickInfoService
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (7)
QuickInfo\SemanticQuickInfoSourceTests.cs (7)
47var service = QuickInfoService.GetService(document); 67private static async Task TestWithOptionsAsync(Document document, QuickInfoService service, int position, Action<QuickInfoItem>[] expectedResults) 124var service = QuickInfoService.GetService(document); 276var service = QuickInfoService.GetService(document);
Microsoft.CodeAnalysis.CSharp.Features (1)
QuickInfo\CSharpQuickInfoSevice.cs (1)
13[ExportLanguageServiceFactory(typeof(QuickInfoService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.EditorFeatures (2)
IntelliSense\QuickInfo\QuickInfoSourceProvider.QuickInfoSource.cs (2)
68var service = QuickInfoService.GetService(document);
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
IntelliSense\AbstractIntellisenseQuickInfoBuilderTests.vb (1)
68Dim quickInfoService = languageServiceProvider.GetRequiredService(Of QuickInfoService)
Microsoft.CodeAnalysis.Features (6)
QuickInfo\ExportQuickInfoProviderAttribute.cs (1)
12/// be found and used by the per language associated <see cref="QuickInfoService"/>.
QuickInfo\QuickInfoProvider.cs (1)
11/// Providers are used with some <see cref="QuickInfoService"/> implementations.
QuickInfo\QuickInfoService.cs (3)
26/// Gets the appropriate <see cref="QuickInfoService"/> for the specified document. 28public static QuickInfoService? GetService(Document? document) 29=> document?.GetLanguageService<QuickInfoService>();
QuickInfo\QuickInfoServiceWithProviders.cs (1)
18/// Base class for <see cref="QuickInfoService"/>'s that delegate to <see cref="QuickInfoProvider"/>'s.
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\Hover\HoverHandler.cs (1)
96var quickInfoService = document.GetRequiredLanguageService<QuickInfoService>();
Microsoft.CodeAnalysis.VisualBasic.Features (1)
QuickInfo\VisualBasicQuickInfoService.vb (1)
11<ExportLanguageServiceFactory(GetType(QuickInfoService), LanguageNames.VisualBasic), [Shared]>