3 implementations of OnDocumentUpdatedAsync
Microsoft.CodeAnalysis.ExternalAccess.Copilot (1)
Internal\SemanticSearch\CopilotSemanticSearchQueryExecutor.cs (1)
65public ValueTask OnDocumentUpdatedAsync(DocumentId documentId, ImmutableArray<TextChange> changes, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\SemanticSearch\RemoteSemanticSearchService.cs (1)
77public ValueTask OnDocumentUpdatedAsync(DocumentId documentId, ImmutableArray<TextChange> changes, CancellationToken cancellationToken)
Microsoft.VisualStudio.LanguageServices.CSharp (1)
SemanticSearch\SemanticSearchQueryExecutor.cs (1)
57public ValueTask OnDocumentUpdatedAsync(DocumentId documentId, ImmutableArray<TextChange> changes, CancellationToken cancellationToken)
2 references to OnDocumentUpdatedAsync
Microsoft.CodeAnalysis.ExternalAccess.Copilot (1)
Internal\SemanticSearch\CopilotSemanticSearchQueryService.cs (1)
56=> observer.OnDocumentUpdatedAsync(documentId, changes, cancellationToken);
Microsoft.CodeAnalysis.Features (1)
SemanticSearch\IRemoteSemanticSearchService.cs (1)
134await observer.OnDocumentUpdatedAsync(documentId, changes, cancellationToken).ConfigureAwait(false);