4 implementations of TryOnBeforeGlobalSymbolRenamed
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
RenameTracking\MockRefactorNotifyService.cs (1)
23public bool TryOnBeforeGlobalSymbolRenamed(Workspace workspace, IEnumerable<DocumentId> changedDocumentIDs, ISymbol symbol, string newName, bool throwOnFailure)
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (1)
RazorRefactorNotifyWrapper.cs (1)
27public 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)
4 references to TryOnBeforeGlobalSymbolRenamed
Microsoft.CodeAnalysis.EditorFeatures (1)
Shared\Extensions\IRefactorNotifyServiceExtensions.cs (1)
22if (!refactorNotifyService.TryOnBeforeGlobalSymbolRenamed(workspace, changedDocuments, symbol, newName, throwOnFailure))
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (1)
IRazorRefactorNotifyService.cs (1)
13/// <inheritdoc cref="IRefactorNotifyService.TryOnBeforeGlobalSymbolRenamed" />
Microsoft.CodeAnalysis.Features (1)
Rename\IRefactorNotifyService.cs (1)
27/// workspace. This should only be called if <see cref="TryOnBeforeGlobalSymbolRenamed"/> was
Microsoft.VisualStudio.LanguageServices (1)
Workspace\VisualStudioSymbolRenamedCodeActionOperationFactoryWorkspaceService.cs (1)
75if (refactorNotifyService.TryOnBeforeGlobalSymbolRenamed(workspace, updatedDocumentIds, _symbol, _newName, throwOnFailure: false))