如何获得COM对象的类型 [英] How to get type of COM object

查看:247
本文介绍了如何获得COM对象的类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我引用在Visual Studio中的COM库,所以它自动创建相应的Interop程序集我。我愿做一个的GetType()这些COM对象,但他们总是返回系统.__ ComObject 。查询它们的接口工作,但:

I am referencing a COM library in Visual Studio, so it has automatically created the corresponding Interop assembly for me. I would like to do a GetType() on these com objects, but they always return System.__ComObject. Querying them for an interface works though:

bool isOfType = someComeObject is ISomeComObject; //this works

但我真正想要的是这回的COM对象的实际类型:

But what I really want is this to return the actual type of the com object:

Type type = someComeObject.GetType(); //returns System.__ComObject :-(

有谁知道怎么做我想做的事?

Does anyone know how to do what I want to do?

推荐答案

添加引用 Microsoft.VisualBasic.dll中然后:

Microsoft.VisualBasic.Information.TypeName(someCOMObject)

MSDN参考<一href="http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.information.typename.aspx">here.

这篇关于如何获得COM对象的类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆