2 implementations of GetLocationForSpanAsync
Microsoft.CodeAnalysis.Features (1)
Navigation\IDocumentNavigationService.cs (1)
39public virtual Task<INavigableLocation?> GetLocationForSpanAsync(Workspace workspace, DocumentId documentId, TextSpan textSpan, bool allowInvalidSpan, CancellationToken cancellationToken)
Microsoft.VisualStudio.LanguageServices (1)
Workspace\VisualStudioDocumentNavigationService.cs (1)
99public async Task<INavigableLocation?> GetLocationForSpanAsync(
4 references to GetLocationForSpanAsync
Microsoft.CodeAnalysis.EditorFeatures (2)
Navigation\IDocumentNavigationServiceExtensions.cs (2)
33var location = await service.GetLocationForSpanAsync(workspace, documentId, textSpan, allowInvalidSpan, cancellationToken).ConfigureAwait(false); 93var location = await service.GetLocationForSpanAsync(
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Navigation\IFSharpDocumentNavigationService.cs (1)
21/// <inheritdoc cref="IDocumentNavigationService.GetLocationForSpanAsync"/>
Microsoft.CodeAnalysis.Features (1)
Navigation\IDocumentNavigationService.cs (1)
55=> service.GetLocationForSpanAsync(workspace, documentId, textSpan, allowInvalidSpan: false, cancellationToken);