我的目标是为同时支持的powershell函数提供一个参数
- 仅在运行时已知的集合的ValidateSet(和选项卡编译)
- 通过管道提供参数的能力
我能够获得第一名,但看起来第二名失败了。
下面是我的代码的一个简化示例:最初,我有一个简单的函数,它打印提供给该函数的所有参数名称。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:
这基本上意味着没有参数被绑定。
我做错了什么?我怎样才能实现我最初的目标?
@CB在这里有正确的想法。
您无法从begin
块访问管道数据;仅来自CCD_ 8块。
如果参数作为命名参数或位置参数传递,begin
块将可以访问该参数,但不能通过管道传递。
无论是否使用动态参数,都是如此。