3 instantiations of VSInternalDocumentDiagnosticsParams
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
LanguageServer\VSTypeScriptHandlerTests.cs (1)
49var documentPullRequest = new VSInternalDocumentDiagnosticsParams
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (1)
Diagnostics\AbstractPullDiagnosticTestsBase.cs (1)
196return new VSInternalDocumentDiagnosticsParams
Microsoft.VisualStudio.LanguageServices.Razor (1)
LanguageClient\Cohost\CohostDocumentPullDiagnosticsEndpoint.cs (1)
125return new VSInternalDocumentDiagnosticsParams
13 references to VSInternalDocumentDiagnosticsParams
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
LanguageServer\VSTypeScriptHandlerTests.cs (2)
49var documentPullRequest = new VSInternalDocumentDiagnosticsParams 54var response = await testLspServer.ExecuteRequestAsync<VSInternalDocumentDiagnosticsParams, VSInternalDiagnosticReport[]>(VSInternalMethods.DocumentPullDiagnosticName, documentPullRequest, CancellationToken.None);
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Handler\Diagnostics\DocumentPullDiagnosticHandler.cs (4)
18: AbstractDocumentPullDiagnosticHandler<VSInternalDocumentDiagnosticsParams, VSInternalDiagnosticReport[], VSInternalDiagnosticReport[]>( 21protected override string? GetRequestDiagnosticCategory(VSInternalDocumentDiagnosticsParams diagnosticsParams) 24public override TextDocumentIdentifier? GetTextDocumentIdentifier(VSInternalDocumentDiagnosticsParams diagnosticsParams) 51protected override ImmutableArray<PreviousPullResult>? GetPreviousResults(VSInternalDocumentDiagnosticsParams diagnosticsParams)
Protocol\Internal\VSInternalMethods.cs (1)
42public static readonly LspRequest<VSInternalDocumentDiagnosticsParams, VSInternalDiagnosticReport[]> DocumentPullDiagnostic = new(DocumentPullDiagnosticName);
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (2)
Diagnostics\AbstractPullDiagnosticTestsBase.cs (2)
190private protected static VSInternalDocumentDiagnosticsParams CreateDocumentDiagnosticParams( 257var diagnostics = await testLspServer.ExecuteRequestAsync<VSInternalDocumentDiagnosticsParams, VSInternalDiagnosticReport[]>(
Microsoft.VisualStudio.LanguageServices.Razor (4)
LanguageClient\Cohost\CohostDocumentPullDiagnosticsEndpoint.cs (4)
36: CohostDocumentPullDiagnosticsEndpointBase<VSInternalDocumentDiagnosticsParams, VSInternalDiagnosticReport[]>( 67protected override RazorTextDocumentIdentifier? GetRazorTextDocumentIdentifier(VSInternalDocumentDiagnosticsParams request) 70protected override async Task<VSInternalDiagnosticReport[]?> HandleRequestAsync(VSInternalDocumentDiagnosticsParams request, TextDocument razorDocument, CancellationToken cancellationToken) 123protected override VSInternalDocumentDiagnosticsParams CreateHtmlParams(Uri uri)