5 references to GetDocumentTextChangesAsync
Microsoft.CodeAnalysis.Remote.ServiceHub (2)
Services\ConvertTupleToStructCodeRefactoringProvider\RemoteConvertTupleToStructCodeRefactoringService.cs (1)
45var documentTextChanges = await RemoteUtilities.GetDocumentTextChangesAsync(
Services\EncapsulateField\RemoteEncapsulateFieldService.cs (1)
52return await RemoteUtilities.GetDocumentTextChangesAsync(
Microsoft.CodeAnalysis.Workspaces (3)
Remote\RemoteUtilities.cs (2)
55/// Applies the result of <see cref="GetDocumentTextChangesAsync"/> to <paramref name="oldSolution"/> to produce 56/// a solution textually equivalent to the <c>newSolution</c> passed to <see cref="GetDocumentTextChangesAsync"/>.
Rename\IRemoteRenamerService.cs (1)
248var documentTextChanges = await RemoteUtilities.GetDocumentTextChangesAsync(OldSolution, _newSolutionWithoutRenamedDocument, cancellationToken).ConfigureAwait(false);