/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Features/CSharp/Portable/Completion/Providers/FirstBuiltInArgumentProvider.cs
29 строк
1 KB
Cyrus Najmabadi
Update c# features to use file scoped namespaces
28 фев 2024, 00:31
28 фев 2024, 00:31
17e64d5
Код
Авторство
О чём код?
// 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; using System.Threading.Tasks; using Microsoft.CodeAnalysis.Completion; using Microsoft.CodeAnalysis.Host.Mef; namespace Microsoft.CodeAnalysis.CSharp.Completion.Providers; /// <summary> /// Provides an argument provider that always appears before any built-in argument provider. This argument /// provider does not provide any argument values. /// </summary> [ExportArgumentProvider(nameof(FirstBuiltInArgumentProvider), LanguageNames.CSharp)] [Shared] internal sealed class FirstBuiltInArgumentProvider : ArgumentProvider { [ImportingConstructor] [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)] public FirstBuiltInArgumentProvider() { } public override Task ProvideArgumentAsync(ArgumentContext context) => Task.CompletedTask; }