3 implementations of IRefactorNotifyService
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
RenameTracking\MockRefactorNotifyService.cs (1)
12public sealed class MockRefactorNotifyService : IRefactorNotifyService
Microsoft.VisualStudio.LanguageServices (2)
Implementation\ContainedLanguageRefactorNotifyService.cs (1)
23internal sealed class ContainedLanguageRefactorNotifyService : IRefactorNotifyService
Implementation\VsRefactorNotifyService.cs (1)
25internal sealed class VsRefactorNotifyService : IRefactorNotifyService
49 references to IRefactorNotifyService
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
InlineRename\CSharpEditorInlineRenameService.cs (1)
20[ImportMany] IEnumerable<IRefactorNotifyService> refactorNotifyServices,
Microsoft.CodeAnalysis.EditorFeatures (20)
InlineRename\AbstractEditorInlineRenameService.cs (2)
15private readonly IEnumerable<IRefactorNotifyService> _refactorNotifyServices; 18protected AbstractEditorInlineRenameService(IEnumerable<IRefactorNotifyService> refactorNotifyServices, IGlobalOptionService globalOptions)
InlineRename\AbstractEditorInlineRenameService.SymbolRenameInfo.cs (2)
37private readonly IEnumerable<IRefactorNotifyService> _refactorNotifyServices; 59IEnumerable<IRefactorNotifyService> refactorNotifyServices,
InlineRename\InlineRenameService.cs (2)
35private readonly IEnumerable<IRefactorNotifyService> _refactorNotifyServices; 54[ImportMany] IEnumerable<IRefactorNotifyService> refactorNotifyServices,
InlineRename\InlineRenameSession.cs (2)
49private readonly IEnumerable<IRefactorNotifyService> _refactorNotifyServices; 143IEnumerable<IRefactorNotifyService> refactorNotifyServices,
RenameTracking\RenameTrackingCodeRefactoringProvider.cs (2)
20private readonly IEnumerable<IRefactorNotifyService> _refactorNotifyServices; 26[ImportMany] IEnumerable<IRefactorNotifyService> refactorNotifyServices)
RenameTracking\RenameTrackingTaggerProvider.cs (1)
117IEnumerable<IRefactorNotifyService> refactorNotifyServices,
RenameTracking\RenameTrackingTaggerProvider.RenameTrackingCodeAction.cs (2)
28private readonly IEnumerable<IRefactorNotifyService> _refactorNotifyServices; 37IEnumerable<IRefactorNotifyService> refactorNotifyServices,
RenameTracking\RenameTrackingTaggerProvider.RenameTrackingCommitter.cs (2)
32private readonly IEnumerable<IRefactorNotifyService> _refactorNotifyServices; 40IEnumerable<IRefactorNotifyService> refactorNotifyServices,
RenameTracking\RenameTrackingTaggerProvider.StateMachine.cs (1)
291IEnumerable<IRefactorNotifyService> refactorNotifyServices,
Shared\Extensions\IRefactorNotifyServiceExtensions.cs (4)
12this IEnumerable<IRefactorNotifyService> refactorNotifyServices, 19foreach (var refactorNotifyService in refactorNotifyServices) 31this IEnumerable<IRefactorNotifyService> refactorNotifyServices, 38foreach (var refactorNotifyService in refactorNotifyServices)
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures (1)
InlineRename\VisualBasicEditorInlineRenameService.vb (1)
18<ImportMany> refactorNotifyServices As IEnumerable(Of IRefactorNotifyService), globalOptions As IGlobalOptionService)
Microsoft.VisualStudio.LanguageServices (9)
Implementation\ContainedLanguageRefactorNotifyService.cs (1)
22[Export(typeof(IRefactorNotifyService))]
Implementation\VsRefactorNotifyService.cs (1)
24[Export(typeof(IRefactorNotifyService))]
Venus\ContainedLanguage.IVsContainedLanguageCodeSupport.cs (1)
207var refactorNotifyServices = this.ComponentModel.DefaultExportProvider.GetExportedValues<IRefactorNotifyService>();
Venus\ContainedLanguageCodeSupport.cs (1)
322IEnumerable<IRefactorNotifyService> refactorNotifyServices,
Workspace\VisualStudioSymbolRenamedCodeActionOperationFactoryWorkspaceService.cs (5)
25private readonly IEnumerable<IRefactorNotifyService> _refactorNotifyServices; 30[ImportMany] IEnumerable<IRefactorNotifyService> refactorNotifyServices) 47private readonly IEnumerable<IRefactorNotifyService> _refactorNotifyServices; 54IEnumerable<IRefactorNotifyService> refactorNotifyServices, 71foreach (var refactorNotifyService in _refactorNotifyServices)
Microsoft.VisualStudio.LanguageServices.CSharp (3)
CodeModel\CSharpCodeModelService.cs (1)
45IEnumerable<IRefactorNotifyService> refactorNotifyServices,
CodeModel\CSharpCodeModelServiceFactory.cs (2)
23private readonly IEnumerable<IRefactorNotifyService> _refactorNotifyServices; 30[ImportMany] IEnumerable<IRefactorNotifyService> refactorNotifyServices,
Microsoft.VisualStudio.LanguageServices.Implementation (2)
CodeModel\AbstractCodeModelService.cs (2)
51private readonly IEnumerable<IRefactorNotifyService> _refactorNotifyServices; 60IEnumerable<IRefactorNotifyService> refactorNotifyServices,
Microsoft.VisualStudio.LanguageServices.UnitTests (10)
Venus\CSharpContainedLanguageSupportTests.vb (5)
844refactorNotifyServices:=SpecializedCollections.EmptyEnumerable(Of IRefactorNotifyService), 871refactorNotifyServices:=SpecializedCollections.EmptyEnumerable(Of IRefactorNotifyService), 889refactorNotifyServices:=SpecializedCollections.EmptyEnumerable(Of IRefactorNotifyService), 907refactorNotifyServices:=SpecializedCollections.EmptyEnumerable(Of IRefactorNotifyService), 940refactorNotifyServices:=SpecializedCollections.EmptyEnumerable(Of IRefactorNotifyService),
Venus\VisualBasicContainedLanguageSupportTests.vb (5)
880refactorNotifyServices:=SpecializedCollections.EmptyEnumerable(Of IRefactorNotifyService), 905refactorNotifyServices:=SpecializedCollections.EmptyEnumerable(Of IRefactorNotifyService), 925refactorNotifyServices:=SpecializedCollections.EmptyEnumerable(Of IRefactorNotifyService), 944refactorNotifyServices:=SpecializedCollections.EmptyEnumerable(Of IRefactorNotifyService), 974refactorNotifyServices:=SpecializedCollections.EmptyEnumerable(Of IRefactorNotifyService),
Microsoft.VisualStudio.LanguageServices.VisualBasic (3)
CodeModel\VisualBasicCodeModelService.vb (1)
43refactorNotifyServices As IEnumerable(Of IRefactorNotifyService),
CodeModel\VisualBasicCodeModelServiceFactory.vb (2)
22Private ReadOnly _refactorNotifyServices As IEnumerable(Of IRefactorNotifyService) 29<ImportMany> refactorNotifyServices As IEnumerable(Of IRefactorNotifyService),