1 implementation of CorrelationId
Microsoft.CodeAnalysis.Workspaces (1)
CodeFixesAndRefactorings\CommonFixAllState.cs (1)
17
public int
CorrelationId
{ get; } = CorrelationIdFactory.GetNextId();
6 references to 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
;