/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Protocol/Handler/Extensions/AbstractExtensionHandler.cs
12 строк
422 B
Cyrus Najmabadi
Share code
04 апр 2025, 00:09
04 апр 2025, 00:09
e2fc8f1
Код
Авторство
О чём код?
// 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. namespace Microsoft.CodeAnalysis.LanguageServer.Handler.Extensions; internal abstract class AbstractExtensionHandler { public bool MutatesSolutionState => false; public bool RequiresLSPSolution => true; }