4 implementations of TryOnAfterGlobalSymbolRenamed
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
RenameTracking\MockRefactorNotifyService.cs (1)
35public bool TryOnAfterGlobalSymbolRenamed(Workspace workspace, IEnumerable<DocumentId> changedDocumentIDs, ISymbol symbol, string newName, bool throwOnFailure)
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (1)
RazorRefactorNotifyWrapper.cs (1)
21public bool TryOnAfterGlobalSymbolRenamed(Workspace workspace, IEnumerable<DocumentId> changedDocumentIDs, ISymbol symbol, string newName, bool throwOnFailure)
Microsoft.VisualStudio.LanguageServices (2)
Implementation\ContainedLanguageRefactorNotifyService.cs (1)
38public bool TryOnAfterGlobalSymbolRenamed(Workspace workspace, IEnumerable<DocumentId> changedDocumentIDs, ISymbol symbol, string newName, bool throwOnFailure)
Implementation\VsRefactorNotifyService.cs (1)
72public bool TryOnAfterGlobalSymbolRenamed(Workspace workspace, IEnumerable<DocumentId> changedDocumentIDs, ISymbol symbol, string newName, bool throwOnFailure)
4 references to TryOnAfterGlobalSymbolRenamed
Microsoft.CodeAnalysis.EditorFeatures (1)
Shared\Extensions\IRefactorNotifyServiceExtensions.cs (1)
41if (!refactorNotifyService.TryOnAfterGlobalSymbolRenamed(workspace, changedDocuments, symbol, newName, throwOnFailure))
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (1)
IRazorRefactorNotifyService.cs (1)
16/// <inheritdoc cref="IRefactorNotifyService.TryOnAfterGlobalSymbolRenamed" />
Microsoft.CodeAnalysis.Features (1)
Rename\IRefactorNotifyService.cs (1)
20/// <see cref="TryOnAfterGlobalSymbolRenamed"/>.
Microsoft.VisualStudio.LanguageServices (1)
Workspace\VisualStudioSymbolRenamedCodeActionOperationFactoryWorkspaceService.cs (1)
77refactorNotifyService.TryOnAfterGlobalSymbolRenamed(workspace, updatedDocumentIds, _symbol, _newName, throwOnFailure: false);