3 implementations of TryOnAfterGlobalSymbolRenamed
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
RenameTracking\MockRefactorNotifyService.cs (1)
34public 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)
3 references to TryOnAfterGlobalSymbolRenamed
Microsoft.CodeAnalysis.EditorFeatures (2)
IRefactorNotifyService.cs (1)
20/// <see cref="TryOnAfterGlobalSymbolRenamed"/>.
Shared\Extensions\IRefactorNotifyServiceExtensions.cs (1)
40if (!refactorNotifyService.TryOnAfterGlobalSymbolRenamed(workspace, changedDocuments, symbol, newName, throwOnFailure))
Microsoft.VisualStudio.LanguageServices (1)
Workspace\VisualStudioSymbolRenamedCodeActionOperationFactoryWorkspaceService.cs (1)
77refactorNotifyService.TryOnAfterGlobalSymbolRenamed(workspace, updatedDocumentIds, _symbol, _newName, throwOnFailure: false);