2 overrides of CreateReport
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\SpellCheck\DocumentSpellCheckHandler.cs (1)
18protected override VSInternalSpellCheckableRangeReport CreateReport(TextDocumentIdentifier identifier, VSInternalSpellCheckableRange[]? ranges, string? resultId)
Handler\SpellCheck\WorkspaceSpellCheckHandler.cs (1)
18protected override VSInternalWorkspaceSpellCheckableReport CreateReport(TextDocumentIdentifier identifier, VSInternalSpellCheckableRange[]? ranges, string? resultId)
3 references to CreateReport
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Handler\SpellCheck\AbstractSpellCheckingHandler.cs (3)
121progress.Report(CreateReport(previousParams.TextDocument, ranges: null, previousParams.PreviousResultId)); 165return CreateReport(ProtocolConversions.DocumentToTextDocumentIdentifier(document), result.ToArray(), resultId); 187progress.Report(CreateReport(textDocument, ranges: null, resultId: null));