1 implementation of CorrelationId
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
15public int CorrelationId { get; } = CorrelationIdFactory.GetNextId();
8 references to CorrelationId
Microsoft.CodeAnalysis.EditorFeatures (2)
Suggestions\SuggestedActions\AbstractFixAllSuggestedAction.cs (1)
68using (Logger.LogBlock(functionId, FixAllLogger.CreateCorrelationLogMessage(FixAllState.CorrelationId), cancellationToken))
Suggestions\SuggestedActions\SuggestedAction.cs (1)
196map[FixAllLogger.CorrelationId] = fixSome.FixAllState.CorrelationId;
Microsoft.CodeAnalysis.Features (5)
CodeFixesAndRefactorings\AbstractFixAllGetFixesService.cs (5)
90fixAllState.CorrelationId, 170m[FixAllLogger.CorrelationId] = fixAllContext.State.CorrelationId; 182FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: false); 188FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: true); 192FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: false, timedOut: true);
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\FixAllLogger.cs (1)
63m[CorrelationId] = fixAllState.CorrelationId;