1 implementation of GetRefactoringAsync
Microsoft.CodeAnalysis.Features (1)
CodeRefactorings\MoveType\AbstractMoveTypeService.cs (1)
30public abstract Task<ImmutableArray<CodeAction>> GetRefactoringAsync(Document document, TextSpan textSpan, CancellationToken cancellationToken);
1 reference to GetRefactoringAsync
Microsoft.CodeAnalysis.Features (1)
CodeRefactorings\MoveType\MoveTypeCodeRefactoringProvider.cs (1)
28var actions = await service.GetRefactoringAsync(document, textSpan, cancellationToken).ConfigureAwait(false);