1 write to AllRenameLocationsTask
Microsoft.CodeAnalysis.EditorFeatures (1)
InlineRename\InlineRenameSession.cs (1)
314AllRenameLocationsTask = _threadingContext.JoinableTaskFactory.RunAsync(async () =>
7 references to AllRenameLocationsTask
Microsoft.CodeAnalysis.EditorFeatures (7)
InlineRename\InlineRenameSession.cs (6)
116/// includes the <see cref="AllRenameLocationsTask"/> tasks. 121/// This task is a continuation of the <see cref="AllRenameLocationsTask"/> that is the result of computing 311var currentRenameLocationsTask = AllRenameLocationsTask; 319await AllRenameLocationsTask.JoinAsync(cancellationToken).ConfigureAwait(false); 335AllRenameLocationsTask.Task.CompletesAsyncOperation(asyncToken); 550var result = await AllRenameLocationsTask.JoinAsync(cancellationToken).ConfigureAwait(false);
InlineRename\UI\SmartRename\SmartRenameViewModel.cs (1)
231var renameLocations = await this.BaseViewModel.Session.AllRenameLocationsTask.JoinAsync(cancellationToken)