14 references to RenameSymbol
Microsoft.CodeAnalysis.EditorFeatures (14)
InlineRename\AbstractEditorInlineRenameService.InlineRenameLocationSet.cs (1)
47_renameInfo.RenameSymbol, _renameInfo.GetFinalSymbolName(replacementText), nonConflictSymbolKeys: default, cancellationToken).ConfigureAwait(false);
InlineRename\AbstractEditorInlineRenameService.SymbolRenameInfo.cs (13)
66this.HasOverloads = RenameUtilities.GetOverloadedSymbols(this.RenameSymbol).Any(); 86var searchName = this.RenameSymbol.Name; 91searchName = _info.GetWithoutAttributeSuffix(this.RenameSymbol.Name); 126public string DisplayName => RenameSymbol.Name; 127public string FullDisplayName => RenameSymbol.ToDisplayString(); 128public Glyph Glyph => RenameSymbol.GetGlyph(); 137solution, this.RenameSymbol, options, cancellationToken).ConfigureAwait(false); 144return _refactorNotifyServices.TryOnBeforeGlobalSymbolRenamed(workspace, changedDocumentIDs, RenameSymbol, 150return _refactorNotifyServices.TryOnAfterGlobalSymbolRenamed(workspace, changedDocumentIDs, RenameSymbol, 156if (RenameSymbol.Kind == SymbolKind.NamedType && 159if (RenameSymbol.Locations.Length > 1) 167var symbolSourceDocument = this.Document.Project.Solution.GetDocument(RenameSymbol.Locations.Single().SourceTree); 168if (symbolSourceDocument != null && WorkspacePathUtilities.TypeNameMatchesDocumentName(symbolSourceDocument, RenameSymbol.Name))