// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using System.Management.Automation; namespace Microsoft.PowerShell.Commands { /// /// The base class for the */property commands. /// public class ItemPropertyCommandBase : CoreCommandWithCredentialsBase { #region Parameters /// /// Gets or sets the filter parameter. /// [Parameter] public override string Filter { get { return base.Filter; } set { base.Filter = value; } } /// /// Gets or sets the include property. /// [Parameter] public override string[] Include { get { return base.Include; } set { base.Include = value; } } /// /// Gets or sets the exclude property. /// [Parameter] public override string[] Exclude { get { return base.Exclude; } set { base.Exclude = value; } } #endregion Parameters #region parameter data /// /// The path to the item. /// internal string[] paths = Array.Empty(); #endregion parameter data } }