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