2 implementations of ILspLifetimeService
Microsoft.CodeAnalysis.Remote.Razor (2)
Initialization\RemoteClientCapabilitiesService.cs (1)
13internal sealed class RemoteClientCapabilitiesService : AbstractClientCapabilitiesService, ILspLifetimeService
SemanticTokens\RemoteSemanticTokensLegendService.cs (1)
15internal sealed class RemoteSemanticTokensLegendService : ISemanticTokensLegendService, ILspLifetimeService
7 references to ILspLifetimeService
Microsoft.AspNetCore.Razor.Test.Common.Cohosting (2)
CohostTestBase.cs (2)
160var lifetimeServices = OOPExportProvider.GetExportedValues<ILspLifetimeService>(); 161foreach (var service in lifetimeServices)
Microsoft.CodeAnalysis.Remote.Razor (5)
Initialization\RemoteClientCapabilitiesService.cs (1)
12[Export(typeof(ILspLifetimeService))]
Initialization\RemoteClientInitializationService.cs (3)
21private readonly ImmutableArray<ILspLifetimeService> _lspLifetimeServices = args.ExportProvider.GetExportedValues<ILspLifetimeService>().ToImmutableArray(); 34foreach (var service in _lspLifetimeServices)
SemanticTokens\RemoteSemanticTokensLegendService.cs (1)
14[Export(typeof(ILspLifetimeService))]