/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/Microsoft.PowerShell.Commands.Management/commands/management/PropertyCommandBase.cs
77 строк
2 KB
xtqqczze
Remove unnecessary usings part 3 (#14021)
10 ноя 2020, 06:18
Не верифицирован
10 ноя 2020, 06:18
8cdc421
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using System.Management.Automation; namespace Microsoft.PowerShell.Commands { /// <summary> /// The base class for the */property commands. /// </summary> public class ItemPropertyCommandBase : CoreCommandWithCredentialsBase { #region Parameters /// <summary> /// Gets or sets the filter parameter. /// </summary> [Parameter] public override string Filter { get { return base.Filter; } set { base.Filter = value; } } /// <summary> /// Gets or sets the include property. /// </summary> [Parameter] public override string[] Include { get { return base.Include; } set { base.Include = value; } } /// <summary> /// Gets or sets the exclude property. /// </summary> [Parameter] public override string[] Exclude { get { return base.Exclude; } set { base.Exclude = value; } } #endregion Parameters #region parameter data /// <summary> /// The path to the item. /// </summary> internal string[] paths = Array.Empty<string>(); #endregion parameter data } }