1 type derived from VSInternalSpellCheckableRangeReport
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Protocol\Internal\VSInternalWorkspaceSpellCheckableReport.cs (1)
12internal class VSInternalWorkspaceSpellCheckableReport : VSInternalSpellCheckableRangeReport, ITextDocumentParams
1 instantiation of VSInternalSpellCheckableRangeReport
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\SpellCheck\DocumentSpellCheckHandler.cs (1)
18=> new()
8 references to VSInternalSpellCheckableRangeReport
Microsoft.CodeAnalysis.LanguageServer.Protocol (8)
Handler\SpellCheck\AbstractSpellCheckingHandler.cs (2)
28where TReport : VSInternalSpellCheckableRangeReport 59/// Creates the <see cref="VSInternalSpellCheckableRangeReport"/> instance we'll report back to clients to let them know our
Handler\SpellCheck\DocumentSpellCheckHandler.cs (2)
12internal class DocumentSpellCheckHandler : AbstractSpellCheckHandler<VSInternalDocumentSpellCheckableParams, VSInternalSpellCheckableRangeReport> 17protected override VSInternalSpellCheckableRangeReport CreateReport(TextDocumentIdentifier identifier, int[]? ranges, string? resultId)
Protocol\Internal\VSInternalDocumentSpellCheckableParams.cs (2)
13internal sealed class VSInternalDocumentSpellCheckableParams : VSInternalStreamingParams, IPartialResultParams<VSInternalSpellCheckableRangeReport[]> 18public IProgress<VSInternalSpellCheckableRangeReport[]>? PartialResultToken
Protocol\Internal\VSInternalMethods.cs (2)
125public static readonly LspRequest<VSInternalDocumentSpellCheckableParams, VSInternalSpellCheckableRangeReport[]> TextDocumentSpellCheckableRanges = new LspRequest<VSInternalDocumentSpellCheckableParams, VSInternalSpellCheckableRangeReport[]>(TextDocumentSpellCheckableRangesName);