forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPassThroughContentCommandBase.cs
More file actions
76 lines (64 loc) · 2 KB
/
Copy pathPassThroughContentCommandBase.cs
File metadata and controls
76 lines (64 loc) · 2 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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Management.Automation;
namespace Microsoft.PowerShell.Commands
{
/// <summary>
/// The base class for the */content commands that also take
/// a passthrough parameter.
/// </summary>
public class PassThroughContentCommandBase : ContentCommandBase
{
#region Parameters
/// <summary>
/// Gets or sets the passthrough parameter to the command.
/// </summary>
[Parameter]
public SwitchParameter PassThru
{
get
{
return _passThrough;
}
set
{
_passThrough = value;
}
}
/// <summary>
/// Determines if the provider for the specified path supports ShouldProcess.
/// </summary>
/// <value></value>
protected override bool ProviderSupportsShouldProcess
{
get
{
return base.DoesProviderSupportShouldProcess(base.Path);
}
}
#endregion Parameters
#region parameter data
/// <summary>
/// Determines if the content returned from the provider should
/// be passed through to the pipeline.
/// </summary>
private bool _passThrough;
#endregion parameter data
#region protected members
/// <summary>
/// Initializes a CmdletProviderContext instance to the current context of
/// the command.
/// </summary>
/// <returns>
/// A CmdletProviderContext instance initialized to the context of the current
/// command.
/// </returns>
internal CmdletProviderContext GetCurrentContext()
{
CmdletProviderContext currentCommandContext = CmdletProviderContext;
currentCommandContext.PassThru = PassThru;
return currentCommandContext;
}
#endregion protected members
}
}