- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将 C# 对象传递给 PowerShell,这样我就可以为主 UI 提供状态更新。我在 SO 上看到了几篇关于此的帖子,但它们似乎都没有帮助解决我的问题。
Runspace runspace = RunspaceFactory.CreateRunspace();
runspace.ThreadOptions = PSThreadOptions.UseCurrentThread;
runspace.Open();
runspace.SessionStateProxy.SetVariable("LogReporter", this.LogReporter);
Pipeline pipeline = runspace.CreatePipeline();
pipeline.Commands.AddScript(script);
StringBuilder builder = new StringBuilder();
Collection<PSObject> objects = pipeline.Invoke();
在 PowerShell 脚本中,我想访问 LogReporter(基本类型:System.Windows.Window
),如下面的代码片段所示
$RunningInstances= @(Get-ChildItem | Where-Object { $_.InstanceStatus.ToString() -eq "Running" })
$LogReporter.ReportProgress($RunningInstances.Count.ToString() + " instances running currently...")
然而,我得到的只是
You cannot call a method on a null-valued expression.
at CallSite.Target(Closure , CallSite , Object , Object )
at System.Dynamic.UpdateDelegates.UpdateAndExecute2[T0,T1,TRet](CallSite site, T0 arg0, T1 arg1)
at System.Management.Automation.Interpreter.DynamicInstruction`3.Run(InterpretedFrame frame)
at System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame)
我试图列出 $LogReporter 变量的所有成员,但结果是
No object has been specified to the get-member cmdlet.
这意味着,$LogReporter
变量为 null
。现在的问题是:为什么以及如何解决这个问题?
请注意,代码已略微简化以提高可读性,但显示了必要的部分和失败的部分。
有什么问题吗?我是否必须以某种方式注册我的 LogReporter
类型?
感谢您的帮助!
解决方案
我有一个错字,C# 代码中的变量与 PowerShell 脚本中的变量不匹配。我这里的代码示例没有任何问题。
最佳答案
这是向您展示问题的完整工作示例。问题不在 LogReporter 变量中,而在“$_.InstanceStatus.ToString()”部分。 InstanceStatus 在您的情况下为 null,并且 ToString() 抛出上述异常。在下面的代码中,我刚刚删除了 ToString() 调用,您会看到来自 LogReporter 的“0 个实例正在运行”消息。
class Program
{
private static void Main(string[] args) {
new ScriptRunner().Run();
Console.ReadKey();
}
}
class ScriptRunner {
public ScriptRunner() {
this.LogReporter = new LogReporter();
}
public void Run() {
Runspace runspace = RunspaceFactory.CreateRunspace();
runspace.ThreadOptions = PSThreadOptions.UseCurrentThread;
runspace.Open();
Pipeline pipeline = runspace.CreatePipeline();
pipeline.Commands.AddScript("$RunningInstances=@(Get-ChildItem | Where-Object {$_.InstanceStatus -eq \"Running\"})");
runspace.SessionStateProxy.SetVariable("LogReporter", this.LogReporter);
pipeline.Commands.AddScript("$LogReporter.ReportProgress($RunningInstances.Count.ToString()+\" instances running currently...\")");
StringBuilder builder = new StringBuilder();
Collection<PSObject> objects = pipeline.Invoke();
}
public LogReporter LogReporter { get; private set; }
}
class LogReporter
{
public void ReportProgress(string msg)
{
Console.WriteLine(msg);
}
}
关于c# - 将变量从 C# 传递到 PowerShell 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32461817/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!