在哪里可以找到 Powershell .NET 类型加速器的列表?
在 PowerShell 中,您可以使用 [xml] 来表示 [System.Xml.XmlDocument]。 您知道在哪里可以找到这些类型加速器的列表吗?
这些加速器是特定于 PowerShell 或 .NET 的吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
自从四年前提出并回答这个问题以来,PowerShell 一直在不断发展。 不幸的是,@KeithHill 的简洁答案不再有效。 我做了一些挖掘,发现必需的课程暴露得有点少。 好的一面是,类型加速器列表现在可以仅使用这一行代码来显示......
归因于 Jaykul 在连接帖子。
以下是部分输出:
2014.03.15 更新
自 PowerShell 社区扩展 (PSCX )版本 3.1.0,您现在可以使用类型加速器列出所有类型加速器并调用此:
Since this question was asked and answered four years ago PowerShell has continued to evolve. @KeithHill's concise answer unfortunately no longer works. I did a little digging and found that the requisite class is just a bit less exposed. On the bright side, the list of type accelerators may now be displayed with just this one line of code...
... attributed to Jaykul in this Connect post.
Here is a partial output:
2014.03.15 Update
As of PowerShell Community Extensions (PSCX) version 3.1.0, you can now use a type accelerator to list all type accelerators and just invoke this:
最终的方法是执行 Oisin 在此 优秀博客文章:
请注意,您必须将新的“accelerators”加速器添加到字典中,因为 TypeAccelerators 类型不是公共的。 使用 .NET Reflector 和大量的业余时间可以做很多令人惊奇的事情。 :-) 你摇滚 Oisin!
The definitive way is to do what Oisin demontrates in this excellent blog post:
Note that you have to add the new 'accelerators' accelerator to the dictionary because the TypeAccelerators type is not public. Amazing what you can do with .NET Reflector and a lot of spare time. :-) You rock Oisin!
请参阅 这篇博文。 我相信这是别名的完整列表。
See the section entitled Type Name Aliases in this blog post. I believe this is a complete list of the aliases.
@诺尔多林有一些类型加速器的详细列表,其中有一些。
PowerShell 还允许您使用类型文字来转换对象、调用静态方法、访问静态属性、反射以及您可能对 System.Type 对象的实例执行的任何其他操作。
为了使用类型文字,您只需将类(或结构或枚举)的全名(命名空间和类名)(用句点分隔命名空间和类名)括在方括号中,例如:
PowerShell 还将提供领先的“系统”。 尝试解析名称,因此如果您在 System* 命名空间中使用某些内容,则无需显式使用该名称。
Oisin Grehan(PowerShell MVP)也有一篇关于创建自己的类型加速器的博客文章。
@Noldorin has a good list of some of the Type Accelerators, with some.
PowerShell also allows you to use type literals to cast objects, call static methods, access static properties, reflect over, and anything else you might do with an instance of a System.Type object.
In order to use a type literal, you just enclose the full name (namespace and class name) of the class (or struct or enum) (with a period separating the namespace and the class name) enclosed in brackets like:
PowerShell will also provide a leading "System." in its attempt to resolve the name, so you don't need to explicitly use that if you are using something in a System* namespace.
Oisin Grehan (a PowerShell MVP) also has a blog post about creating your own type accelerators.
这是一个更完整的列表:
Here is a more complete list: