1 implementation of CorrelationId
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
16public int CorrelationId { get; } = CorrelationIdFactory.GetNextId();
15 references to CorrelationId
Microsoft.CodeAnalysis.EditorFeatures.Cocoa (7)
AbstractFixAllSuggestedAction.cs (1)
70using (Logger.LogBlock(functionId, FixAllLogger.CreateCorrelationLogMessage(FixAllState.CorrelationId), cancellationToken))
FixAllGetFixesService.cs (5)
75m[FixAllLogger.CorrelationId] = fixAllContext.State.CorrelationId; 87FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: false); 93FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: true); 97FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: false, timedOut: true); 139fixAllState.CorrelationId,
SuggestedAction.cs (1)
188map[FixAllLogger.CorrelationId] = fixSome.FixAllState.CorrelationId;
Microsoft.CodeAnalysis.EditorFeatures.Wpf (7)
Suggestions\FixAll\FixAllGetFixesService.cs (5)
75m[FixAllLogger.CorrelationId] = fixAllContext.State.CorrelationId; 87FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: false); 93FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: true); 97FixAllLogger.LogComputationResult(fixAllKind, fixAllContext.State.CorrelationId, completed: false, timedOut: true); 139fixAllState.CorrelationId,
Suggestions\SuggestedActions\AbstractFixAllSuggestedAction.cs (1)
70using (Logger.LogBlock(functionId, FixAllLogger.CreateCorrelationLogMessage(FixAllState.CorrelationId), cancellationToken))
Suggestions\SuggestedActions\SuggestedAction.cs (1)
188map[FixAllLogger.CorrelationId] = fixSome.FixAllState.CorrelationId;
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\FixAllLogger.cs (1)
64m[CorrelationId] = fixAllState.CorrelationId;