1 implementation of TryGetLanguageInformation
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
LanguageInfoProvider.cs (1)
47public bool TryGetLanguageInformation(DocumentUri requestUri, string? lspLanguageId, [NotNullWhen(true)] out LanguageInformation? languageInformation)
3 references to TryGetLanguageInformation
Microsoft.CodeAnalysis.LanguageServer (1)
FileBasedPrograms\FileBasedProgramsProjectSystem.cs (1)
73if (!languageInfoProvider.TryGetLanguageInformation(uri, languageId, out var languageInformation))
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Workspaces\LspMiscellaneousFilesWorkspaceProvider.cs (1)
57if (!languageInfoProvider.TryGetLanguageInformation(uri, languageId, out var languageInformation))
Workspaces\LspWorkspaceManager.cs (1)
549if (_languageInfoProvider.TryGetLanguageInformation(uri, languageId, out var languageInfo))