16 instantiations of ExternalErrorDiagnosticUpdateSource
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\VisualStudioWorkspaceImpl.cs (1)
137new ExternalErrorDiagnosticUpdateSource(
Microsoft.VisualStudio.LanguageServices.UnitTests (15)
Diagnostics\DiagnosticTableDataSourceTests.vb (1)
673Using updateSource = New ExternalErrorDiagnosticUpdateSource(workspace, analyzerService, notificationService, listener, CancellationToken.None)
Diagnostics\ExternalDiagnosticUpdateSourceTests.vb (14)
37Using source = New ExternalErrorDiagnosticUpdateSource( 51Using source = New ExternalErrorDiagnosticUpdateSource( 89Using source = New ExternalErrorDiagnosticUpdateSource( 106Using source = New ExternalErrorDiagnosticUpdateSource( 127Using source = New ExternalErrorDiagnosticUpdateSource( 161Using source = New ExternalErrorDiagnosticUpdateSource( 201Using source = New ExternalErrorDiagnosticUpdateSource( 251Using source = New ExternalErrorDiagnosticUpdateSource( 289Using source = New ExternalErrorDiagnosticUpdateSource( 341Using source = New ExternalErrorDiagnosticUpdateSource( 380Using source = New ExternalErrorDiagnosticUpdateSource( 412Using source = New ExternalErrorDiagnosticUpdateSource( 455Using source = New ExternalErrorDiagnosticUpdateSource( 510Using source = New ExternalErrorDiagnosticUpdateSource(
22 references to ExternalErrorDiagnosticUpdateSource
Microsoft.VisualStudio.LanguageServices (19)
ProjectSystem\VisualStudioWorkspaceImpl.cs (3)
111private readonly Lazy<ExternalErrorDiagnosticUpdateSource> _lazyExternalErrorDiagnosticUpdateSource; 136_lazyExternalErrorDiagnosticUpdateSource = new Lazy<ExternalErrorDiagnosticUpdateSource>(() => 149internal ExternalErrorDiagnosticUpdateSource ExternalErrorDiagnosticUpdateSource => _lazyExternalErrorDiagnosticUpdateSource.Value;
TableDataSource\Suppression\VisualStudioSuppressionFixService.cs (1)
51private readonly ExternalErrorDiagnosticUpdateSource _buildErrorDiagnosticService;
TableDataSource\VisualStudioBaseDiagnosticListTable.LiveTableDataSource.cs (4)
55/// We get build progress updates from <see cref="ExternalErrorDiagnosticUpdateSource.BuildProgressChanged"/>. 66ExternalErrorDiagnosticUpdateSource? buildUpdateSource = null) 87private void ConnectToBuildUpdateSource(ExternalErrorDiagnosticUpdateSource? buildUpdateSource) 97(_, progress) => OnBuildProgressChanged(running: progress != ExternalErrorDiagnosticUpdateSource.BuildProgress.Done);
TableDataSource\VisualStudioDiagnosticListTable.BuildTableDataSource.cs (6)
41private readonly ExternalErrorDiagnosticUpdateSource _buildErrorSource; 43public BuildTableDataSource(Workspace workspace, IThreadingContext threadingContext, ExternalErrorDiagnosticUpdateSource errorSource) 51private void ConnectToBuildUpdateSource(ExternalErrorDiagnosticUpdateSource errorSource) 64private void OnBuildProgressChanged(object sender, ExternalErrorDiagnosticUpdateSource.BuildProgress progress) 66SetStableState(progress == ExternalErrorDiagnosticUpdateSource.BuildProgress.Done); 68if (progress != ExternalErrorDiagnosticUpdateSource.BuildProgress.Started)
TableDataSource\VisualStudioDiagnosticListTable.cs (2)
134private VisualStudioDiagnosticListTable(Workspace workspace, IThreadingContext threadingContext, ExternalErrorDiagnosticUpdateSource errorSource, ITableManagerProvider provider) 206public static VisualStudioDiagnosticListTable Create(Workspace workspace, IThreadingContext threadingContext, ExternalErrorDiagnosticUpdateSource errorSource, ITableManagerProvider provider)
TaskList\ExternalErrorDiagnosticUpdateSource.cs (2)
577private readonly ExternalErrorDiagnosticUpdateSource _owner; 645public InProgressState(ExternalErrorDiagnosticUpdateSource owner, Solution solution, CancellationToken cancellationToken)
TaskList\ProjectExternalErrorReporter.cs (1)
61private ExternalErrorDiagnosticUpdateSource DiagnosticProvider => _workspace.ExternalErrorDiagnosticUpdateSource;
Microsoft.VisualStudio.LanguageServices.UnitTests (3)
Diagnostics\ExternalDiagnosticUpdateSourceTests.vb (3)
165If progress = ExternalErrorDiagnosticUpdateSource.BuildProgress.Done Then 420If progress = ExternalErrorDiagnosticUpdateSource.BuildProgress.Updated Then 423ElseIf progress = ExternalErrorDiagnosticUpdateSource.BuildProgress.Done Then