3 implementations of TryOnBeforeGlobalSymbolRenamed
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
RenameTracking\MockRefactorNotifyService.cs (1)
22public bool TryOnBeforeGlobalSymbolRenamed(Workspace workspace, IEnumerable<DocumentId> changedDocumentIDs, ISymbol symbol, string newName, bool throwOnFailure)
Microsoft.VisualStudio.LanguageServices (2)
Implementation\ContainedLanguageRefactorNotifyService.cs (1)
35public bool TryOnBeforeGlobalSymbolRenamed(Workspace workspace, IEnumerable<DocumentId> changedDocumentIDs, ISymbol symbol, string newName, bool throwOnFailure)
Implementation\VsRefactorNotifyService.cs (1)
35public bool TryOnBeforeGlobalSymbolRenamed(Workspace workspace, IEnumerable<DocumentId> changedDocumentIDs, ISymbol symbol, string newName, bool throwOnFailure)
3 references to TryOnBeforeGlobalSymbolRenamed
Microsoft.CodeAnalysis.EditorFeatures (2)
IRefactorNotifyService.cs (1)
27/// workspace. This should only be called if <see cref="TryOnBeforeGlobalSymbolRenamed"/> was
Shared\Extensions\IRefactorNotifyServiceExtensions.cs (1)
21if (!refactorNotifyService.TryOnBeforeGlobalSymbolRenamed(workspace, changedDocuments, symbol, newName, throwOnFailure))
Microsoft.VisualStudio.LanguageServices (1)
Workspace\VisualStudioSymbolRenamedCodeActionOperationFactoryWorkspaceService.cs (1)
75if (refactorNotifyService.TryOnBeforeGlobalSymbolRenamed(workspace, updatedDocumentIds, _symbol, _newName, throwOnFailure: false))