/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Protocol/Handler/Commands/ProvidesCommandAttribute.cs
13 строк
547 B
Cyrus Najmabadi
Seal certain types in LSP layer
08 май 2025, 23:13
08 май 2025, 23:13
48b3103
Код
Авторство
О чём код?
// 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; using System.Composition; namespace Microsoft.CodeAnalysis.LanguageServer.Handler.Commands; [MetadataAttribute] [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)] internal class CommandAttribute(string command) : MethodAttribute(AbstractExecuteWorkspaceCommandHandler.GetRequestNameForCommandName(command));