/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Protocol/Handler/IInitializeManager.cs
22 строки
757 B
Rikki Gibson
File-based apps automatic discovery (#82863)
03 апр 2026, 23:23
Не верифицирован
03 апр 2026, 23:23
18365a9
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Immutable; using Roslyn.LanguageServer.Protocol; namespace Microsoft.CodeAnalysis.LanguageServer.Handler; internal interface IInitializeManager : ILspService { ClientCapabilities GetClientCapabilities(); ClientCapabilities? TryGetClientCapabilities(); InitializeParams? TryGetInitializeParams(); /// <summary>Expected to be non-default after the Initialize event.</summary> ImmutableArray<string> GetRequiredWorkspaceFolderPaths(); void SetInitializeParams(InitializeParams initializeParams); }