C# - 检索 COM 的属性成分?
我的服务器 (Windows Server 2003) 上有一个 COM+ 组件。有什么方法可以以编程方式检索该组件的属性(例如使用的构造函数字符串)?
当我转到管理工具 -> 时组件服务-> COM+ 应用程序并右键单击我的组件,这些是我希望能够检索并写入文件的属性。
我有什么办法可以做到这一点吗?
提前致谢。
I have a COM+ component on a server (Windows Server 2003). Is there any way I can programmatically retrieve the properties of this component, (e.g. the constructor string used)?
When I go to Administritive Tools -> Component Services -> COM+ Applications and right click on my component, these are the properties I want to be able to retrieve and write to a file.
Is there any way I can do this?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 COM+ Administration API 检索组件的属性。您可以在此处找到可以检索的各种集合。在 Visual Studio 中,您可以添加对
COM+ 1.0 管理类型库
的引用。本质上你会做类似的事情(未经测试):You can use the COM+ Administration API to retrieve the properties of a component. The various collections you can retrieve can be found here. From visual studio you would add a reference to the
COM+ 1.0 Admin Type Library
. Essentially you would then do something like (not tested):