“调用”在哪里? System.Management.Automation.VerbsCommon 中的成员?
我正在尝试创建一个名为 Invoke-Something 的 cmdlet。 但我找不到要放入属性的成员“Invoke”:
[Cmdlet(VerbsCommon.Invoke, "Something", SupportsShouldProcess = true)]
^^^^^^
我缺少什么?
I'm trying to create a cmdlet with the name Invoke-Something.
But I cannot find the member "Invoke" to put in the attribute:
[Cmdlet(VerbsCommon.Invoke, "Something", SupportsShouldProcess = true)]
^^^^^^
What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了:VerbsLifecycle.Invoke
检查: http: //msdn.microsoft.com/en-us/library/ms714428(VS.85).aspx
I've found it: VerbsLifecycle.Invoke
check: http://msdn.microsoft.com/en-us/library/ms714428(VS.85).aspx