2 writes to _trackedSession
Microsoft.CodeAnalysis.EditorFeatures (2)
InlineRename\AbstractInlineRenameUndoManager.cs (2)
64
_trackedSession
= null;
68
_trackedSession
= InlineRenameService.ActiveSession;
6 references to _trackedSession
Microsoft.CodeAnalysis.EditorFeatures (6)
InlineRename\AbstractInlineRenameUndoManager.cs (6)
52
if (
_trackedSession
is not null)
54
_trackedSession
.ReplacementTextChanged -= InlineRenameSession_ReplacementTextChanged;
70
if (
_trackedSession
is not null)
72
_trackedSession
.ReplacementTextChanged += InlineRenameSession_ReplacementTextChanged;
78
if (currentState.ReplacementText !=
_trackedSession
.ReplacementText)
85
ReplacementText =
_trackedSession
.ReplacementText,