4 implementations of GetLocationInfoAsync
Microsoft.CodeAnalysis.CSharp.Features (1)
Debugging\CSharpLanguageDebugInfoService.cs (1)
25public Task<DebugLocationInfo> GetLocationInfoAsync(Document document, int position, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptLanguageDebugInfoService.cs (1)
29public async Task<DebugLocationInfo> GetLocationInfoAsync(Document document, int position, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\Editor\Implementation\Debugging\FSharpLanguageDebugInfoService.cs (1)
33public async Task<DebugLocationInfo> GetLocationInfoAsync(Document document, int position, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.VisualBasic.Features (1)
Debugging\VisualBasicLanguageDebugInfoService.vb (1)
21Public Function GetLocationInfoAsync(document As Document, position As Integer, cancellationToken As CancellationToken) As Task(Of DebugLocationInfo) Implements ILanguageDebugInfoService.GetLocationInfoAsync
2 references to GetLocationInfoAsync
Microsoft.CodeAnalysis.VisualBasic.Features (1)
Debugging\VisualBasicLanguageDebugInfoService.vb (1)
21Public Function GetLocationInfoAsync(document As Document, position As Integer, cancellationToken As CancellationToken) As Task(Of DebugLocationInfo) Implements ILanguageDebugInfoService.GetLocationInfoAsync
Microsoft.VisualStudio.LanguageServices (1)
LanguageService\AbstractLanguageService`2.VsLanguageDebugInfo.cs (1)
107var debugLocationInfo = await _languageDebugInfo.GetLocationInfoAsync(document, point, cancellationToken).ConfigureAwait(false);