3 implementations of GetRequiredServices
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
LspServices\LspServices.cs (1)
101public IEnumerable<T> GetRequiredServices<T>()
Microsoft.CommonLanguageServerProtocol.Framework.Example (1)
ExampleLspServices.cs (1)
54public IEnumerable<T> GetRequiredServices<T>()
Microsoft.CommonLanguageServerProtocol.Framework.UnitTests (1)
Mocks\TestLspServices.cs (1)
34public virtual IEnumerable<T> GetRequiredServices<T>()
2 references to GetRequiredServices
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\RequestContext.cs (1)
366return _lspServices.GetRequiredServices<T>();
src\LanguageServer\Microsoft.CommonLanguageServerProtocol.Framework\HandlerProvider.cs (1)
76var handlers = lspServices.GetRequiredServices<IMethodHandler>();