在 C# COM 对象上实现 IProvideClassInfo

发布于 2024-07-14 16:32:01 字数 438 浏览 5 评论 0 原文

我正在尝试在 C# COM 对象上实现 IProvideClassInfo ,以便可以从 Windows 脚本宿主 (WSH) 使用它的事件。 我已成功实现该接口并跟踪对我的 GetClassInfo 方法的调用。 但是,连接事件失败,并显示无法连接对象

有人设法做到这一点吗?

这是我的脚本代码(JScript):

function AP\_GetActionsResponse ()
{           
WScript.Echo ("AP\_GetActionsResponse event");
}

// It fails on this 
var obj = WScript.CreateObject ("Promotions.Promotion", "AP_");

I'm trying to implement the IProvideClassInfo on a C# COM object so its events can be used from Windows Script Host (WSH). I've managed to implement the interface and trace a call in to my GetClassInfo method. However, hooking up the events fails with Cannot connect object.

Has anyone managed to do this?

This is my script code (JScript):

function AP\_GetActionsResponse ()
{           
WScript.Echo ("AP\_GetActionsResponse event");
}

// It fails on this 
var obj = WScript.CreateObject ("Promotions.Promotion", "AP_");

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

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

发布评论

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

评论(1

扮仙女 2024-07-21 16:32:01

好吧,我想通了 - 您必须在事件接口上指定 DispId,否则它将不起作用。

无需实现 IProvideClassInfo,但如果您愿意,也可以实现。

Okay I figured it out - You must specify a DispId on the event interface or it doesn't work.

There's no need to implement IProvideClassInfo, but you can if you want.

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