3 implementations of OnTextFileUpdatedAsync
Microsoft.CodeAnalysis.ExternalAccess.Copilot (1)
Internal\SemanticSearch\CopilotSemanticSearchQueryExecutor.cs (1)
71public ValueTask OnTextFileUpdatedAsync(string filePath, string? newContent, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\SemanticSearch\RemoteSemanticSearchService.cs (1)
83public ValueTask OnTextFileUpdatedAsync(string filePath, string? newContent, CancellationToken cancellationToken)
Microsoft.VisualStudio.LanguageServices.CSharp (1)
SemanticSearch\SemanticSearchQueryExecutor.cs (1)
97public ValueTask OnTextFileUpdatedAsync(string filePath, string? newContent, CancellationToken cancellationToken)
2 references to OnTextFileUpdatedAsync
Microsoft.CodeAnalysis.ExternalAccess.Copilot (1)
Internal\SemanticSearch\CopilotSemanticSearchQueryService.cs (1)
59=> observer.OnTextFileUpdatedAsync(filePath, newContent, cancellationToken);
Microsoft.CodeAnalysis.Features (1)
SemanticSearch\IRemoteSemanticSearchService.cs (1)
156await observer.OnTextFileUpdatedAsync(filePath, newContent, cancellationToken).ConfigureAwait(false);