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