5

この特定の質問が対処されているのを見つけることができないので、ここで質問します: dynamc パラメーターを位置 0 パラメーターにすることができないようです。私が試してみると、位置 1 で定義された最初の静的パラメーターが位置 0 を昇格または継承し、位置 0 で定義された動的パラメーターが次に使用可能な位置 (位置 1) に追加されるように見えます。

    $x=[string]::Empty;

    Function foo {
        [cmdletbinding()]
        Param (
            [Parameter(ParameterSetName="set1",
                       Position=1,
                       ValueFromPipeline=$true)]
                $InputObject,
            [Parameter()]
            [switch]
                $RequireFilePath
        )
        DynamicParam {
            $mand = $script:x -eq $null -or `
                $script:x -eq [string]::Empty -or `
                $RequireFilePath.IsPresent;

            $attrs = New-Object System.Management.Automation.ParameterAttribute;
            $attrs.ParameterSetName = "set1";
            $attrs.Mandatory = $mand;
            $attrs.Position = 0;

            $attrCollection = New-Object `
                System.Collections.ObjectModel.Collection[System.Attribute];
            $attrCollection.Add($attrs);

            $FilePath = New-Object System.Management.Automation.RuntimeDefinedParameter `
                "FilePath", string, $attrCollection;

            $paramDictionary = New-Object `
                System.Management.Automation.RuntimeDefinedParameterDictionary;
            $paramDictionary.Add("FilePath", $FilePath);

            $paramDictionary;
        }
        Begin {
            if ( $FilePath.Value -eq $null -or $FilePath.Value -eq [string]::Empty) {
                $FilePath.Value = $script:x;
            } else {
                $script:x = $FilePath.Value;
            }
            Write-Output ("(foo)        FilePath: {0}" -f $FilePath.Value);
            Write-Output ("(foo) RequireFilePath: {0}" -f $RequireFilePath.IsPresent);
            Write-Output ("(foo)        script:x: {0}" -f $script:x);
        }
        Process {
            Write-Output ("(foo)     InputObject: {0}" -f $InputObject);
        }
        End {
        }
    }

    foo "filename2.txt" "zxcv";

実行すると、次のようになります。

    (foo)        FilePath: zxcv
    (foo) RequireFilePath: False
    (foo)        script:x: zxcv
    (foo)     InputObject: filename2.txt

私の予想では、動的パラメーターは位置 0 になり、静的パラメーターは位置 1 になると予想していたと思います。動的パラメーターを静的パラメーターよりも低い位置 (早い位置) に定義することはできますか?

4

2 に答える 2

3

これを少し試してみたところ、ValueFromRemainingArgumentsパラメーター属性を$ InputObjectパラメーターに追加すると、目的の動作に最も近くなるように見えることがわかりました。しかし、その理由は完全にはわかりません。

    Param (...
    [Parameter(ParameterSetName="set1",
               Position=1,
               ValueFromPipeline=$true
               ValueFromRemainingArguments=$true)]
        $InputObject,
    ...)
于 2013-02-05T13:55:03.153 に答える