1 type derived from QuickInfoService
Microsoft.CodeAnalysis.Features (1)
QuickInfo\QuickInfoServiceWithProviders.cs (1)
20internal abstract class QuickInfoServiceWithProviders(LanguageServices services) : QuickInfoService
8 references to QuickInfoService
Microsoft.CodeAnalysis.CSharp.Features (1)
QuickInfo\CSharpQuickInfoSevice.cs (1)
13[ExportLanguageServiceFactory(typeof(QuickInfoService), LanguageNames.CSharp), Shared]
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.VisualBasic.Features (1)
QuickInfo\VisualBasicQuickInfoService.vb (1)
11<ExportLanguageServiceFactory(GetType(QuickInfoService), LanguageNames.VisualBasic), [Shared]>