我的 cmdlet 有一个Get-Deal
命令,它将从管道接收值:
[Cmdlet(VerbsCommon.Get, "Deal")]
public class GetDealCmdlet : InsightBaseCmdlet
{
private List<Object> _legalentities = new List<Object>();
[Parameter(Position = 0, Mandatory = true, ValueFromPipeline = true,ValueFromPipelineByPropertyName = true)]
public List<Object> Legalentity { set { _legalentities = value; } }
protected override void ProcessRecord() {...}
}
如果我传递了字符串或其他类型的列表,它工作正常。但是,如果我传递了一个在以下位置创建的对象Search-Deal
:
foreach (...)
{
PSObject dealValue = new PSObject();
dealValue.Properties.Add(new PSNoteProperty(Legalentity,Convert.ToInt32($deal.Properties["LegalEntityID"].Value.ToString())));
dealValue.Properties.Add(new PSNoteProperty("Name",deal.Properties["name"].Value.ToString()));
WriteObject(dealValue);
}
我收到一个错误:
无法处理管道输入,因为无法检索参数“合法性”的默认值。获得“合法性”的异常:表达式必须可读参数名称:表达式
我确信search-Deal
工作正常,因为
$a = Search-Deal name
正在工作中。并给予:
Get-Deal $a
返回我想要的确切结果。
然而
$a | Get-Deal
也会被同一个错误。
编辑:使用
Trace-Command -Name ParameterBinding -Expression { Search-Deal JL | Get-Deal } -PSHost
我发现了以下内容:
CALLING BeginProcessing
BIND PIPELINE object to parameters: [Get-Deal]
PIPELINE object TYPE = [System.Management.Automation.PSCustomObject]
RESTORING pipeline parameter's original values
BIND PIPELINE object to parameters: [Out-Default]
PIPELINE object TYPE = [System.Management.Automation.ErrorRecord]
Parameter [InputObject] PIPELINE INPUT ValueFromPipeline NO COERCION
BIND arg [Pipeline input cannot be processed because the default value of parameter 'LegalEntity' cannot be retrieved. Exception getting "LegalEntity": "Expression must be readable Parameter name: expression"]
所以我认为管道传递对象一定有问题。
感谢您的帮助!