2 types derived from AbstractExtractInterfaceService
Microsoft.CodeAnalysis.CSharp.Features (1)
ExtractInterface\CSharpExtractInterfaceService.cs (1)
26internal sealed class CSharpExtractInterfaceService : AbstractExtractInterfaceService
Microsoft.CodeAnalysis.VisualBasic.Features (1)
ExtractInterface\VisualBasicExtractInterfaceService.vb (1)
18Inherits AbstractExtractInterfaceService
13 references to AbstractExtractInterfaceService
Microsoft.CodeAnalysis.CSharp.Features (1)
ExtractInterface\CSharpExtractInterfaceService.cs (1)
25[ExportLanguageService(typeof(AbstractExtractInterfaceService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.EditorFeatures (2)
ExtractInterface\AbstractExtractInterfaceCommandHandler.cs (2)
66var extractInterfaceService = document.GetLanguageService<AbstractExtractInterfaceService>();
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (2)
ExtractInterface\ExtractInterfaceTestState.cs (2)
34public AbstractExtractInterfaceService ExtractInterfaceService { get; } 68ExtractInterfaceService = ExtractFromDocument.GetLanguageService<AbstractExtractInterfaceService>();
Microsoft.CodeAnalysis.Features (7)
ExtractClass\ExtractClassWithDialogCodeAction.cs (2)
88var namespaceService = _document.GetRequiredLanguageService<AbstractExtractInterfaceService>();
ExtractInterface\ExtractInterfaceCodeAction.cs (3)
16private readonly AbstractExtractInterfaceService _extractInterfaceService; 18public ExtractInterfaceCodeAction(AbstractExtractInterfaceService extractInterfaceService, ExtractInterfaceTypeAnalysisResult typeAnalysisResult) 30return AbstractExtractInterfaceService.GetExtractInterfaceOptionsAsync(
ExtractInterface\ExtractInterfaceCodeRefactoringProvider.cs (2)
30var service = document.GetLanguageService<AbstractExtractInterfaceService>();
Microsoft.CodeAnalysis.VisualBasic.Features (1)
ExtractInterface\VisualBasicExtractInterfaceService.vb (1)
16<ExportLanguageService(GetType(AbstractExtractInterfaceService), LanguageNames.VisualBasic), [Shared]>