我的目标是为同时支持两者的 powershell 函数提供一个参数
- ValidateSet(和 tab-compliition)用于仅在运行时已知的集合
- 通过管道提供参数的能力。
我能够实现#1,但看起来#2 失败了。
这是我的代码的简化示例:最初我有一个简单的函数,可以打印提供给该函数的所有参数名称。ValidateSet 是静态的,不是在运行时生成的。函数定义如下:
Function Test-Static {
[CmdletBinding()]
Param(
[Parameter(Mandatory=$true, ValueFromPipeline = $true, Position=1)]
[ValidateSet("val1","val2")]
$Static
)
begin {}
process {
Write-Host "bound parameters: $($PSBoundParameters.Keys)"
}
}
运行以下代码时
"val1" | Test-Static
输出是
bound parameters: Static
然后我继续尝试使用动态参数执行完全相同的操作,但它看起来像是$PsBoundParameters
空的。请注意,如果我将值作为参数而不是通过管道提供,它确实会显示在$PsBoundParameters
.
Function Test-Dynamic {
[CmdletBinding()]
Param(
)
DynamicParam {
# Set the dynamic parameters' name
$ParameterName = 'Dynamic'
# Create the dictionary
$RuntimeParameterDictionary = New-Object System.Management.Automation.RuntimeDefinedParameterDictionary
# Create the collection of attributes
$AttributeCollection = New-Object System.Collections.ObjectModel.Collection[System.Attribute]
# Create and set the parameters' attributes
$ParameterAttribute = New-Object System.Management.Automation.ParameterAttribute
$ParameterAttribute.Mandatory = $true
$ParameterAttribute.Position = 1
$ParameterAttribute.ValueFromPipeline = $true
# Add the attributes to the attributes collection
$AttributeCollection.Add($ParameterAttribute)
# Generate and set the ValidateSet
$arrSet = "val1","val2"
$ValidateSetAttribute = New-Object System.Management.Automation.ValidateSetAttribute($arrSet)
# Add the ValidateSet to the attributes collection
$AttributeCollection.Add($ValidateSetAttribute)
# Create and return the dynamic parameter
$RuntimeParameter = New-Object System.Management.Automation.RuntimeDefinedParameter($ParameterName, [string], $AttributeCollection)
$RuntimeParameterDictionary.Add($ParameterName, $RuntimeParameter)
return $RuntimeParameterDictionary
}
begin {
# Bind the parameter to a friendly variable
write-host "bound parameters: $($PsBoundParameters.Keys)"
$Param = $PsBoundParameters[$ParameterName]
}
process {
}
}
跑步时
"val1" | test-Dynamic
我得到以下结果:
bound parameters:
这基本上意味着没有参数被绑定。
我究竟做错了什么?我怎样才能实现我最初的目标?