1 implementation of IReplacePropertyWithMethodsService
Microsoft.CodeAnalysis.Features (1)
ReplacePropertyWithMethods\AbstractReplacePropertyWithMethodsService.cs (1)
21: IReplacePropertyWithMethodsService
9 references to IReplacePropertyWithMethodsService
Microsoft.CodeAnalysis.CSharp.Features (1)
ReplacePropertyWithMethods\CSharpReplacePropertyWithMethodsService.cs (1)
26[ExportLanguageService(typeof(IReplacePropertyWithMethodsService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.Features (7)
ReplacePropertyWithMethods\ReplacePropertyWithMethodsCodeRefactoringProvider.cs (7)
45var service = document.GetLanguageService<IReplacePropertyWithMethodsService>(); 229var service = originalDocument.GetRequiredLanguageService<IReplacePropertyWithMethodsService>(); 245IReplacePropertyWithMethodsService service, 360var service = updatedDocument.GetRequiredLanguageService<IReplacePropertyWithMethodsService>();
Microsoft.CodeAnalysis.VisualBasic.Features (1)
ReplacePropertyWithMethods\VisualBasicReplacePropertyWithMethods.vb (1)
17<ExportLanguageService(GetType(IReplacePropertyWithMethodsService), LanguageNames.VisualBasic), [Shared]>