3

我对动态参数有疑问:

function get-foo {
 [cmdletBinding()]
 param(
  [parameter(Mandatory=$true)]
  $Name
 )
 DynamicParam { 
if($Name -like 'c*') {
$Attributes = New-Object 'Management.Automation.ParameterAttribute' 
$Attributes.ParameterSetName = '__AllParameterSets'            
$Attributes.Mandatory = $false
$AttributesCollection = New-Object 'Collections.ObjectModel.Collection[Attribute]' 
$AttributesCollection.Add($Attributes) 
$Dynamic = New-Object -TypeName 'Management.Automation.RuntimeDefinedParameter' -ArgumentList @('pattern','system.object',$AttributeCollection)
$ParamDictionary = New-Object 'Management.Automation.RuntimeDefinedParameterDictionary'          
$ParamDictionary.Add("pattern", $Dynamic) 
$ParamDictionary 
 } 
}
 end {
   if($test) {
       return $Name -replace '\b\w',$test
   }
   $name
 }
}

它正在检测我的模式参数,但它返回一个错误;

ps c:\> get-foo -Name cruze -pattern 123
get-foo : Le paramètre « pattern » ne peut pas être spécifié dans le jeu de paramètres « __AllParameterSets 
».
Au niveau de ligne : 1 Caractère : 8
+ get-foo <<<<  -Name cruze -pattern u
    + CategoryInfo          : InvalidArgument: (:) [get-foo], ParameterBindingException
    + FullyQualifiedErrorId : ParameterNotInParameterSet,get-foo

如何解决问题?

4

1 回答 1

1

替换$AttributeCollection$AttributesCollection(缺少's')。

用于Set-StrictMode捕捉此类错别字:)


至于剧本,我认为还有其他问题。这是更正和工作的版本:

function get-foo {
    [cmdletBinding()]
    param(
        [parameter(Mandatory=$true)]
        $Name
    )
    DynamicParam {
        if ($Name -like 'c*') {
            $Attributes = New-Object 'Management.Automation.ParameterAttribute'
            $Attributes.ParameterSetName = '__AllParameterSets'
            $Attributes.Mandatory = $false
            $AttributesCollection = New-Object 'Collections.ObjectModel.Collection[Attribute]'
            $AttributesCollection.Add($Attributes)
            $Pattern = New-Object -TypeName 'Management.Automation.RuntimeDefinedParameter' -ArgumentList @('pattern', [string], $AttributesCollection)
            $ParamDictionary = New-Object 'Management.Automation.RuntimeDefinedParameterDictionary'
            $ParamDictionary.Add("pattern", $Pattern)
            $ParamDictionary
        }
    }
    end {
        if ($Name -like 'c*') {
            if ($Pattern.IsSet) {
                return $Name -replace '\b\w', $Pattern.Value
            }
        }
        $name
    }
}
于 2012-10-18T10:37:44.777 回答