6 implementations of ActiveDocumentChanged
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (3)
NavigateTo\AbstractNavigateToTests.cs (2)
243public event EventHandler<DocumentId> ActiveDocumentChanged { add { } remove { } } 277public event EventHandler<DocumentId> ActiveDocumentChanged { add { } remove { } }
SolutionCrawler\TestDocumentTrackingService.cs (1)
25public event EventHandler<DocumentId?>? ActiveDocumentChanged;
Microsoft.CodeAnalysis.Features (1)
SolutionCrawler\DefaultDocumentTrackingService.cs (1)
24public event EventHandler<DocumentId?> ActiveDocumentChanged { add { } remove { } }
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\ServiceHubDocumentTrackingService.cs (1)
26public event EventHandler<DocumentId?> ActiveDocumentChanged { add { } remove { } }
Microsoft.VisualStudio.LanguageServices (1)
Workspace\VisualStudioDocumentTrackingServiceFactory.cs (1)
44public event EventHandler<DocumentId?> ActiveDocumentChanged
3 references to ActiveDocumentChanged
Microsoft.CodeAnalysis.Features (3)
SolutionCrawler\WorkCoordinator.cs (2)
75_documentTrackingService.ActiveDocumentChanged += OnActiveDocumentSwitched; 92_documentTrackingService.ActiveDocumentChanged -= OnActiveDocumentSwitched;
Workspace\BackgroundParser.cs (1)
46_documentTrackingService.ActiveDocumentChanged += OnActiveDocumentChanged;