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)
65this.HasOverloads = RenameUtilities.GetOverloadedSymbols(this.RenameSymbol).Any(); 85var searchName = this.RenameSymbol.Name; 90searchName = _info.GetWithoutAttributeSuffix(this.RenameSymbol.Name); 125public string DisplayName => RenameSymbol.Name; 126public string FullDisplayName => RenameSymbol.ToDisplayString(); 127public Glyph Glyph => RenameSymbol.GetGlyph(); 136solution, this.RenameSymbol, options, cancellationToken).ConfigureAwait(false); 143return _refactorNotifyServices.TryOnBeforeGlobalSymbolRenamed(workspace, changedDocumentIDs, RenameSymbol, 149return _refactorNotifyServices.TryOnAfterGlobalSymbolRenamed(workspace, changedDocumentIDs, RenameSymbol, 155if (RenameSymbol.Kind == SymbolKind.NamedType && 158if (RenameSymbol.Locations.Length > 1) 166var symbolSourceDocument = this.Document.Project.Solution.GetDocument(RenameSymbol.Locations.Single().SourceTree); 167if (symbolSourceDocument != null && WorkspacePathUtilities.TypeNameMatchesDocumentName(symbolSourceDocument, RenameSymbol.Name))