/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/System.Management.Automation/engine/CommandCompletion/ScopeArgumentCompleter.cs
36 строк
1 KB
Armaan Mcleod
Move common completion methods to CompletionHelpers class (#25138)
10 мар 2025, 15:19
Не верифицирован
10 мар 2025, 15:19
ca96c2c
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Collections; using System.Collections.Generic; using System.Management.Automation.Language; namespace System.Management.Automation { /// <summary> /// Provides argument completion for Scope parameter. /// </summary> public class ScopeArgumentCompleter : IArgumentCompleter { private static readonly string[] s_Scopes = new string[] { "Global", "Local", "Script" }; /// <summary> /// Returns completion results for scope parameter. /// </summary> /// <param name="commandName">The command name.</param> /// <param name="parameterName">The parameter name.</param> /// <param name="wordToComplete">The word to complete.</param> /// <param name="commandAst">The command AST.</param> /// <param name="fakeBoundParameters">The fake bound parameters.</param> /// <returns>List of completion results.</returns> public IEnumerable<CompletionResult> CompleteArgument( string commandName, string parameterName, string wordToComplete, CommandAst commandAst, IDictionary fakeBoundParameters) => CompletionHelpers.GetMatchingResults( wordToComplete, possibleCompletionValues: s_Scopes); } }