14 references to RenameSymbol
Microsoft.CodeAnalysis.EditorFeatures (14)
InlineRename\AbstractEditorInlineRenameService.InlineRenameLocationSet.cs (1)
62_renameInfo.RenameSymbol, _renameInfo.GetFinalSymbolName(replacementText), cancellationToken).ConfigureAwait(false);
InlineRename\AbstractEditorInlineRenameService.SymbolRenameInfo.cs (13)
64this.HasOverloads = RenameUtilities.GetOverloadedSymbols(this.RenameSymbol).Any(); 84var searchName = this.RenameSymbol.Name; 89searchName = _info.GetWithoutAttributeSuffix(this.RenameSymbol.Name); 124public string DisplayName => RenameSymbol.Name; 125public string FullDisplayName => RenameSymbol.ToDisplayString(); 126public Glyph Glyph => RenameSymbol.GetGlyph(); 135solution, this.RenameSymbol, options, cancellationToken).ConfigureAwait(false); 142return _refactorNotifyServices.TryOnBeforeGlobalSymbolRenamed(workspace, changedDocumentIDs, RenameSymbol, 148return _refactorNotifyServices.TryOnAfterGlobalSymbolRenamed(workspace, changedDocumentIDs, RenameSymbol, 154if (RenameSymbol.Kind == SymbolKind.NamedType && 157if (RenameSymbol.Locations.Length > 1) 165var symbolSourceDocument = this.Document.Project.Solution.GetDocument(RenameSymbol.Locations.Single().SourceTree); 166if (symbolSourceDocument != null && WorkspacePathUtilities.TypeNameMatchesDocumentName(symbolSourceDocument, RenameSymbol.Name))