1

我有一个接受 IDispatch 接口的 C++ COM 模块,并在某些情况下使用DISPID_VALUE. 此方法在 C++ 中运行良好。现在我有一个 C# 客户端,我想实现一个对象,该对象实现IDispatch并具有DISPID= 0( DISPID_VALUE) 的方法。我已经尝试过了:

// This will generate invalid cast
[ComVisible(true)]
class Callback1
{
    [DispId(0)]
    void Execute(object arg) {...}
}

// This also generate invalid cast
[ComVisible(true)]
[Guid("163AC24E-90DB-47D4-8580-EBB21E981FBF"),
    InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
interface ICallback2
{
    [DispId(0)]
    void Execute(object arg) ;
}
[Guid("842A7754-7CE6-4991-9E12-3FAB2367591A"),
    ClassInterface(ClassInterfaceType.None),
    ComSourceInterfaces(typeof(ICallback2))]
class Callback2 : ICallback2
{
    public void Execute(object arg) {}
}

另外我不记得怎么做了,但我也写了一个成功转换但什么都不调用的代码。现在我想知道我应该如何编写一个实现并在= 0IDispatch时调用特定方法的类。DISPID

演员表例外是:

System.InvalidCastException was unhandled
  Message=Specified cast is not valid.
  Source=mscorlib
  StackTrace:
   at System.StubHelpers.InterfaceMarshaler.ConvertToNative(Object objSrc, IntPtr itfMT, IntPtr classMT, Int32 flags)
   at nmclientLib.INMAsyncOperation.AddCallback(Object pCallback)
   at NMTools.RecorderRegistration.BeginConnection(OperationDoneHandler h) in D:\Programming\Version 0.9\A_Project\NMTools\RecorderRegistration.cs:line 166
   at NMTools.ConnectionManager.NoRequestRegisterConnection(RecorderRegistration r, Boolean bConnect) in D:\Programming\Version 0.9\A_Project\NMTools\ConnectionManager.cs:line 396
   at NMTools.ConnectionManager.<InitializeFromDatabase>b__0(Object s, EventArgs e) in D:\Programming\Version 0.9\A_Project\NMTools\ConnectionManager.cs:line 339
   at System.Windows.Forms.Timer.OnTick(EventArgs e)
   at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
   at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
   at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
   at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
   at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
   at System.Windows.Forms.Application.Run(Form mainForm)
   at TestApp1.Program.Main() in D:\Programming\Version 0.9\A_Project\TestApp1\Program.cs:line 18

内部异常:

4

1 回答 1

3

好的,从评论中可以清楚地看出问题所在。您必须声明 [ComVisible] 接口和类public。CLR 尊重可访问性,当 .NET 程序也不能这样做时,COM 客户端不能使用内部类型。

一个更好的异常消息会很好,但这对于 COM 错误处理课程来说是一样的。它没有任何与可访问性约束类似的东西,因此没有比 E_NOINTERFACE 更具体的错误代码。它被翻译成 InvalidCastException。

值得注意的是,这种情况非常少见,在 .NET 应用程序中使用 [ComVisible] .NET 类没有多大意义。只需通过添加对程序集的引用来直接使用该类。您将摆脱注册要求、笨拙的错误消息和方法调用中的大量开销。模某种你无法摆脱的 COM 层,这种情况发生了。

于 2012-12-15T16:48:42.887 回答