4 implementations of IBreakpointResolutionService
Microsoft.CodeAnalysis.CSharp.Features (1)
Debugging\CSharpBreakpointResolutionService.cs (1)
20internal sealed class CSharpBreakpointResolutionService : IBreakpointResolutionService
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptBreakpointResolutionService.cs (1)
20internal sealed class VSTypeScriptBreakpointResolutionService : IBreakpointResolutionService
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\Editor\Implementation\Debugging\FSharpBreakpointResolutionService.cs (1)
20internal class FSharpBreakpointResolutionService : IBreakpointResolutionService
Microsoft.CodeAnalysis.VisualBasic.Features (1)
Debugging\VisualBasicBreakpointService.vb (1)
19Implements IBreakpointResolutionService
10 references to IBreakpointResolutionService
Microsoft.CodeAnalysis.CSharp.Features (1)
Debugging\CSharpBreakpointResolutionService.cs (1)
19[ExportLanguageService(typeof(IBreakpointResolutionService), LanguageNames.CSharp), Shared]
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptBreakpointResolutionService.cs (1)
19[ExportLanguageService(typeof(IBreakpointResolutionService), InternalLanguageNames.TypeScript)]
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
Internal\Editor\Implementation\Debugging\FSharpBreakpointResolutionService.cs (1)
19[ExportLanguageService(typeof(IBreakpointResolutionService), LanguageNames.FSharp)]
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Breakpoints\ValidateBreakableRangeHandler.cs (2)
41var breakpointService = document.Project.Services.GetRequiredService<IBreakpointResolutionService>();
Microsoft.CodeAnalysis.VisualBasic.Features (3)
Debugging\VisualBasicBreakpointService.vb (3)
17<ExportLanguageService(GetType(IBreakpointResolutionService), LanguageNames.VisualBasic), [Shared]> 76Public Function ResolveBreakpointAsync(document As Document, textSpan As TextSpan, Optional cancellationToken As CancellationToken = Nothing) As Task(Of BreakpointResolutionResult) Implements IBreakpointResolutionService.ResolveBreakpointAsync 83Optional cancellationToken As CancellationToken = Nothing) As Task(Of IEnumerable(Of BreakpointResolutionResult)) Implements IBreakpointResolutionService.ResolveBreakpointsAsync
Microsoft.VisualStudio.LanguageServices (2)
LanguageService\AbstractLanguageService`2.VsLanguageDebugInfo.cs (2)
38private readonly IBreakpointResolutionService? _breakpointService; 56_breakpointService = languageServiceProvider.GetService<IBreakpointResolutionService>();