1 implementation of CorrelationId
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
17public int CorrelationId { get; } = CorrelationIdFactory.GetNextId();
8 references to CorrelationId
Microsoft.CodeAnalysis.EditorFeatures (2)
Suggestions\SuggestedActions\EditorSuggestedAction.cs (1)
181map[FixAllLogger.CorrelationId] = fixSome.RefactorOrFixAllState.CorrelationId;
Suggestions\SuggestedActions\EditorSuggestedActionForRefactorOrFixAll.cs (1)
62using (Logger.LogBlock(functionId, FixAllLogger.CreateCorrelationLogMessage(fixAllState.CorrelationId), cancellationToken))
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;