14 references to RenameSymbol
Microsoft.CodeAnalysis.EditorFeatures (14)
InlineRename\AbstractEditorInlineRenameService.InlineRenameLocationSet.cs (1)
42
_renameInfo.
RenameSymbol
, _renameInfo.GetFinalSymbolName(replacementText), nonConflictSymbolKeys: default, cancellationToken).ConfigureAwait(false);
InlineRename\AbstractEditorInlineRenameService.SymbolRenameInfo.cs (13)
71
this.HasOverloads = RenameUtilities.GetOverloadedSymbols(this.
RenameSymbol
).Any();
91
var searchName = this.
RenameSymbol
.Name;
96
searchName = _info.GetWithoutAttributeSuffix(this.
RenameSymbol
.Name);
131
public string DisplayName =>
RenameSymbol
.Name;
132
public string FullDisplayName =>
RenameSymbol
.ToDisplayString();
133
public Glyph Glyph =>
RenameSymbol
.GetGlyph();
142
solution, this.
RenameSymbol
, options, _fallbackOptions, cancellationToken).ConfigureAwait(false);
149
return _refactorNotifyServices.TryOnBeforeGlobalSymbolRenamed(workspace, changedDocumentIDs,
RenameSymbol
,
155
return _refactorNotifyServices.TryOnAfterGlobalSymbolRenamed(workspace, changedDocumentIDs,
RenameSymbol
,
161
if (
RenameSymbol
.Kind == SymbolKind.NamedType &&
164
if (
RenameSymbol
.Locations.Length > 1)
172
var symbolSourceDocument = this.Document.Project.Solution.GetDocument(
RenameSymbol
.Locations.Single().SourceTree);
173
if (symbolSourceDocument != null && WorkspacePathUtilities.TypeNameMatchesDocumentName(symbolSourceDocument,
RenameSymbol
.Name))