我在C#中有一个自定义的Powershell Cmdlet,一切正常。
一个参数是HashTable
。如何在该参数中使用ScriptBlock
?当我将参数设置为@{file={$_.Identity}}
时,我想在Identity
方法中获得具有ProcessRecord
属性的管道对象。我该怎么办?
现在,我简单地将哈希表的键/值转换为Dictionary<string, string>
,但是我想获得一个流水线对象属性(字符串)。
现在我收到一个错误,提示ScriptBlock
无法转换为字符串。
答案 0 :(得分:0)
您可以为此使用ForEach-Object
function Invoke-WithUnderScore {
param(
[Parameter(ValueFromPipeline)]
[object[]]$InputObject,
[scriptblock]$Property
)
process {
$InputObject |ForEach-Object $Property
}
}
然后使用:
PS C:\> "Hello","World!","This is a longer string" |Invoke-WithUnderscore -Property {$_.Length}
5
6
23
或在C#cmdlet中:
[Cmdlet(VerbsCommon.Select, "Stuff")]
public class SelectStuffCommand : PSCmdlet
{
[Parameter(Mandatory = true, ValueFromPipeline = true)]
public object[] InputObject;
[Parameter()]
public Hashtable Property;
private List<string> _files;
protected override void ProcessRecord()
{
string fileValue = string.Empty;
foreach (var obj in InputObject)
{
if (!Property.ContainsKey("file"))
continue;
if (Property["file"] is ScriptBlock)
{
using (PowerShell ps = PowerShell.Create(InitialSessionState.CreateDefault2()))
{
var result = ps.AddCommand("ForEach-Object").AddParameter("process", Property["file"]).Invoke(new[] { obj });
if (result.Count > 0)
{
fileValue = result[0].ToString();
}
}
}
else
{
fileValue = Property["file"].ToString();
}
_files.Add(fileValue);
}
}
protected override void EndProcessing()
{
// process _files
}
}