1 write to _activeRenameSession
Microsoft.CodeAnalysis.EditorFeatures (1)
InlineRename\InlineRenameService.cs (1)
184
_activeRenameSession
= value;
5 references to _activeRenameSession
Microsoft.CodeAnalysis.EditorFeatures (5)
InlineRename\InlineRenameService.cs (5)
67
if (
_activeRenameSession
!= null)
164
IInlineRenameSession? IInlineRenameService.ActiveSession =>
_activeRenameSession
;
172
return
_activeRenameSession
;
181
Contract.ThrowIfTrue(
_activeRenameSession
!= null && value != null, "Cannot assign an active rename session when one is already in progress.");
183
var previousSession =
_activeRenameSession
;