惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
L
LangChain Blog
GbyAI
GbyAI
F
Fortinet All Blogs
腾讯CDC
Last Week in AI
Last Week in AI
A
About on SuperTechFans
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
B
Blog
D
Docker
G
Google Developers Blog
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
U
Unit 42
Blog — PlanetScale
Blog — PlanetScale
B
Blog RSS Feed

博客园 - Jerry Qian

.net新技术书箱推荐 .net 操作excel的xml形式 wcf 一堂如何提高代码质量的培训课(转) powershell parse powershell basic powershell spirit .net国际化 怎样在存储过程及Sql语句之间选择 转 MSBuild 简解 10-29 为什么linq以select开头 loadruuner 角本录制 test infopath 转log4net 配置 Service Broker 资料 sharepoint 安装 转 计算机端口介绍
powershell type
Jerry Qian · 2010-01-08 · via 博客园 - Jerry Qian

powershell type system is .net type system.but powershell can catch .net ,wmi,com type .

This diagram shows the architecture of the PowerShell type adaptation system.
For each kind of data that PowerShell works with, there is a corresponding adapter. An instance
of a particular data object is subsequently wrapped in an instance of the associated
type adapter. This type adapter instance acts as an intermediary between the object and PowerShell,
proxying all accesses

.NET Adapter This is the basic adapter for all .NET types. This adapter directly maps the
properties on the .NET object and adds several new ones that start with a
PS prefix.
COM Object Adapter This adapter provides access to COM objects. Supported objects include
the Windows Script Host classes and scriptable applications such as
Microsoft Word or Internet Explorer.
WMI Adapter This adapts objects returned from a WMI provider.
ADO Adapter This adapter allows you to treat the columns in ADO data tables as though
they were properties.
Custom Object Adapter This adapter manages objects for which there is no actual underlying
object, only synthetic properties.
ADSI Object Adapter This adapts objects returned from the Active Directory Service Interfaces.