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