使用 Visual Studio 添加 COM 引用会重命名 Interop Assembly 中的接口

发布于 2024-08-02 18:33:20 字数 627 浏览 7 评论 0原文

我添加一个 C++ COM dll 作为对 C# 项目 (Visual Studio 2008) 的引用。 VS 添加了引用,但生成的互操作库并未反映原始 typelib (.idl) 定义中的命名。我的库定义如下:

[
   uuid(...),
   helpstring("MyLib")
]
library MyLib
{    
    [
        uuid(...),
        helpstring("MyCom CoClass")
    ]
    coclass MyComCoClass
    {
        [default] interface IMyInterface;
        interface IMyInheritedInterface;
        interface IMyBaseInterface;
    };
}

因此,IMyInterface 继承自 IMyInheritedInterface,而 IMyInheritedInterface 又继承自 IMyBaseInterface。我希望添加此 COM 的 .dll 后所有这些接口都可用。在 VS 为上面的类型库生成的互操作程序集中,IMyInterface 变为 MyInterface。为什么?有办法解决吗?

谢谢

I'm adding a C++ COM dll as a reference to a C# project (Visual Studio 2008). VS adds the reference however the generated interop library does not reflect the naming in the original typelib (.idl) definition. Here's what my library definition looks like:

[
   uuid(...),
   helpstring("MyLib")
]
library MyLib
{    
    [
        uuid(...),
        helpstring("MyCom CoClass")
    ]
    coclass MyComCoClass
    {
        [default] interface IMyInterface;
        interface IMyInheritedInterface;
        interface IMyBaseInterface;
    };
}

So, IMyInterface inherits from IMyInheritedInterface which in turns inherits from IMyBaseInterface. I want all of these interface available when this COM's .dll is added. In the interop assembly VS generates for the typelib above, IMyInterface becomes MyInterface. Why and is there a way around it?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剩余の解释 2024-08-09 18:33:20

当接口是组件类的默认接口并且仅由该组件类使用时,typelib 导入器会执行此操作。

因此,一种解决方法是向您的类型库添加另一个虚拟组件类,并使 IMyInterface 也成为它的默认接口。

The typelib importer does that when an interface is the default interface for a coclass and it's only used by that coclass.

So one workaround is to add another dummy coclass to your typelib and make IMyInterface the default interface for that too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文