/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Features/VisualBasic/Portable/Completion/Providers/LastBuiltInArgumentProvider.vb
29 строк
1 KB
Sam Harwell
Implement ArgumentProvider base type and default provider
10 дек 2020, 22:59
10 дек 2020, 22:59
cfd8df5
Код
Авторство
О чём код?
' 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. Imports System.Composition Imports Microsoft.CodeAnalysis.Completion Imports Microsoft.CodeAnalysis.Host.Mef Namespace Microsoft.CodeAnalysis.VisualBasic.Completion.Providers ''' <summary> ''' Provides an argument provider that always appears after all built-in argument providers. This argument ''' provider does not provide any argument values. ''' </summary> <ExportArgumentProvider(NameOf(LastBuiltInArgumentProvider), LanguageNames.VisualBasic)> <ExtensionOrder(After:=NameOf(DefaultArgumentProvider))> <[Shared]> Friend Class LastBuiltInArgumentProvider Inherits ArgumentProvider <ImportingConstructor> <Obsolete(MefConstruction.ImportingConstructorMessage, True)> Public Sub New() End Sub Public Overrides Function ProvideArgumentAsync(context As ArgumentContext) As Task Return Task.CompletedTask End Function End Class End Namespace