1 write to _activeRenameSession
Microsoft.CodeAnalysis.EditorFeatures (1)
InlineRename\InlineRenameService.cs (1)
178
_activeRenameSession
= value;
5 references to _activeRenameSession
Microsoft.CodeAnalysis.EditorFeatures (5)
InlineRename\InlineRenameService.cs (5)
63
if (
_activeRenameSession
!= null)
158
IInlineRenameSession? IInlineRenameService.ActiveSession =>
_activeRenameSession
;
166
return
_activeRenameSession
;
175
Contract.ThrowIfTrue(
_activeRenameSession
!= null && value != null, "Cannot assign an active rename session when one is already in progress.");
177
var previousSession =
_activeRenameSession
;