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