1 type derived from Hover
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Protocol\Internal\VSInternalHover.cs (1)
12internal class VSInternalHover : Hover
1 instantiation of Hover
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\Hover\HoverHandler.cs (1)
143return new Hover
9 references to Hover
Microsoft.CodeAnalysis.LanguageServer.Protocol (9)
Handler\Hover\HoverHandler.cs (6)
26internal sealed class HoverHandler : ILspServiceDocumentRequestHandler<TextDocumentPositionParams, Hover?> 42public Task<Hover?> HandleRequestAsync(TextDocumentPositionParams request, RequestContext context, CancellationToken cancellationToken) 55internal static Task<Hover?> GetHoverAsync( 68internal static async Task<Hover?> GetHoverAsync( 86private static async Task<Hover?> GetHoverAsync( 132private static async Task<Hover> CreateDefaultHoverAsync(
Protocol\HoverSetting.cs (1)
19/// instance in <see cref="Hover.Contents"/>.
Protocol\Internal\Converters\VSInternalExtensionUtilities.cs (1)
41AddOrReplaceConverter<Hover, VSInternalHover>();
Protocol\Methods.Document.cs (1)
26public static readonly LspRequest<HoverParams, Hover> TextDocumentHover = new(TextDocumentHoverName);