16 implementations of CreateILspService
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\Api\AbstactVSTypeScriptLspServiceFactory.cs (1)
13
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind)
Microsoft.CodeAnalysis.LanguageServer.Protocol (14)
Handler\CodeLens\CodeLensCacheFactory.cs (1)
20
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind) => new CodeLensCache();
Handler\CodeLens\CodeLensResolveHandlerFactory.cs (1)
20
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind)
Handler\Completion\CompletionListCacheFactory.cs (1)
20
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind) => new CompletionListCache();
Handler\Completion\CompletionResolveHandlerFactory.cs (1)
25
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind)
Handler\Diagnostics\DocumentPullDiagnosticHandlerFactory.cs (1)
33
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind)
Handler\Diagnostics\Public\PublicDocumentPullDiagnosticHandlerFactory.cs (1)
37
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind)
Handler\Diagnostics\Public\PublicWorkspacePullDiagnosticHandlerFactory.cs (1)
36
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind)
Handler\Diagnostics\WorkspacePullDiagnosticHandlerFactory.cs (1)
33
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind)
Handler\RequestTelemetryLoggerFactory.cs (1)
20
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind)
Handler\SemanticTokens\SemanticTokensRangeHandlerFactory.cs (1)
25
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind)
Handler\SemanticTokens\SemanticTokensRefreshQueueFactory.cs (1)
28
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind)
Handler\SpellCheck\DocumentSpellCheckHandlerFactory.cs (1)
20
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind)
Handler\SpellCheck\WorkspaceSpellCheckHandlerFactory.cs (1)
20
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind)
Workspaces\LspWorkspaceManagerFactory.cs (1)
25
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind)
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (1)
LanguageServerTargetTests.cs (1)
163
public ILspService
CreateILspService
(LspServices lspServices, WellKnownLspServerKinds serverKind) => new StatefulLspService();
1 reference to CreateILspService
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
LspServices\LspServices.cs (1)
41
var servicesFromFactories = mefLspServiceFactories.Select(lz => new Lazy<ILspService, LspServiceMetadataView>(() => lz.Value.
CreateILspService
(this, serverKind), lz.Metadata));