We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a90c9dc commit c3672e7Copy full SHA for c3672e7
Transpilers/Parameters/VBN.psx.ps1
@@ -1,18 +1,21 @@
1
<#
2
.SYNOPSIS
3
- ValueFromPipline Shorthand
+ ValueFromPiplineByPropertyName Shorthand
4
.DESCRIPTION
5
- This is syntax shorthand to create [Parameter] attributes that take ValueFromPipelineByPropertyName.
+ This is syntax shorthand to create [Parameter] attributes that take ValueFromPipelineByPropertyName.
6
#>
7
[Alias('VFPBPN')]
8
param(
9
+# The name of the parameter set
10
[Alias('ParameterSetName')]
11
[string]
12
$ParameterSet,
13
14
+# If set, the parameter will be Mandatory.
15
[switch]
16
$Mandatory,
17
18
+# If set, the parameter will also take value from Pipeline
19
[Alias('VFP')]
20
21
$ValueFromPipeline,
0 commit comments