5 references to AbstractExtractInterfaceService
Microsoft.CodeAnalysis.Features (5)
ExtractClass\ExtractClassWithDialogCodeAction.cs (1)
78var namespaceService = _document.GetRequiredLanguageService<AbstractExtractInterfaceService>();
ExtractInterface\ExtractInterfaceCodeAction.cs (3)
14internal sealed class ExtractInterfaceCodeAction(AbstractExtractInterfaceService extractInterfaceService, ExtractInterfaceTypeAnalysisResult typeAnalysisResult) : CodeActionWithOptions 17private readonly AbstractExtractInterfaceService _extractInterfaceService = extractInterfaceService; 25return AbstractExtractInterfaceService.GetExtractInterfaceOptions(
ExtractInterface\ExtractInterfaceCodeRefactoringProvider.cs (1)
29var service = document.GetLanguageService<AbstractExtractInterfaceService>();