forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPropertyCommandBase.cs
More file actions
78 lines (67 loc) · 1.86 KB
/
Copy pathPropertyCommandBase.cs
File metadata and controls
78 lines (67 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/********************************************************************++
Copyright (c) Microsoft Corporation. All rights reserved.
--********************************************************************/
using System.Management.Automation;
using Dbg = 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;
} // get
set
{
base.Filter = value;
} // set
} // Filter
/// <summary>
/// Gets or sets the include property
/// </summary>
[Parameter]
public override string[] Include
{
get
{
return base.Include;
} // get
set
{
base.Include = value;
} // set
} // Include
/// <summary>
/// Gets or sets the exclude property
/// </summary>
[Parameter]
public override string[] Exclude
{
get
{
return base.Exclude;
} // get
set
{
base.Exclude = value;
} // set
} // Exclude
#endregion Parameters
#region parameter data
/// <summary>
/// The path to the item
/// </summary>
internal string[] paths = new string[0];
#endregion parameter data
} // ItemPropertyCommandBase
} // namespace Microsoft.PowerShell.Commands