将一组Structs传递给COM接口

时间:2012-05-17 20:03:26

标签: c# com parameter-passing

我有一个带有IDL文件的COM接口,声明如下:

typedef [uuid(D7B6C495-FFF3-11E0-8A39-08002700D831)]
struct PORT_CONFIG
{
  unsigned char  rack;
  unsigned short port;
  unsigned char  offset;
} PORT_CONFIG;

[object, uuid(D7B6C492-FFF3-11E0-8A39-08002700D831), dual, nonextensible, pointer_default(unique)]
interface IMED704 : IDispatch
{
  [id(5), helpstring("method PortConfig")] HRESULT PortConfig([in] SAFEARRAY(PORT_CONFIG) portCfg, [in, defaultvalue(-1)] VARIANT_BOOL clearInputs);
};

现在在我的C#程序中,我试图调用PortConfig方法:

PORT_CONFIG[] portCfg = new PORT_CONFIG[12];

// ...Initialize code goes here

dig704.PortConfig(portCfg, true);

但是,在调用方法时,程序会抛出异常。我做错了什么?

例外是:

The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))

如果我尝试以下操作,请提供更多信息:

IntPtr pointer = Marshal.GetITypeInfoForType(typeof(PORT_CONFIG));

我收到的例外是:

The specified type must be visible from COM.\r\nParameter name: t

1 个答案:

答案 0 :(得分:2)

我现在能解决自己的问题。由于某种原因,当嵌入了互操作类型时,互操作层在SAFEARRAY参数上失败(VS2010中的默认值)。要解决此问题,请右键单击对COM对象的引用,并将“嵌入互操作类型”设置为“False”。

我希望我可以把这个答案弄清楚,但是归功于Michael Taylor:

http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/1325d24c-db0f-43a1-9780-b68a843d816b