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