1 instantiation of CodeRefactoring
Microsoft.CodeAnalysis.Features (1)
CodeRefactorings\CodeRefactoringService.cs (1)
281return new CodeRefactoring(provider, actions.ToImmutable(), fixAllProviderInfo);
7 references to CodeRefactoring
Microsoft.CodeAnalysis.Features (7)
CodeRefactorings\CodeRefactoringService.cs (5)
147var refactoring = await @this.GetRefactoringFromProviderAsync( 180public async Task<ImmutableArray<CodeRefactoring>> GetRefactoringsAsync( 193var pairs = await ProducerConsumer<(CodeRefactoringProvider provider, CodeRefactoring codeRefactoring)>.RunParallelAsync( 218var refactoring = await @this.GetRefactoringFromProviderAsync( 237private Task<CodeRefactoring?> GetRefactoringFromProviderAsync(
CodeRefactorings\ICodeRefactoringService.cs (2)
17Task<ImmutableArray<CodeRefactoring>> GetRefactoringsAsync(TextDocument document, TextSpan textSpan, CodeActionRequestPriority? priority, CancellationToken cancellationToken); 22public static Task<ImmutableArray<CodeRefactoring>> GetRefactoringsAsync(this ICodeRefactoringService service, TextDocument document, TextSpan state, CancellationToken cancellationToken)