我正在尝试编写一个小型 c# 应用程序来测试 COM 接口(也是用 c# 编写的)。该接口包含一个接受单个字符串作为参数的方法。
我在下面包含了几个代码示例。我使用以下内容来执行调用:
public class CreateObject
{
private Type comType;
public object comObject;
public CreateObject(string ProgID)
{
comType = Type.GetTypeFromProgID(ProgID);
comObject = Activator.CreateInstance(comType);
}
public void Execute(string Method, params object[] Parameters)
{
comType.InvokeMember(Method, BindingFlags.InvokeMethod, null, comObject, Parameters);
}
}
然后我使用以下命令执行:
String sParam = "test";
CreateObject obj = new CreateObject("Namespace.Class");
obj.Execute("Method", sParam );
在 COM 内部,界面如下所示:
[InterfaceType(ComInterfaceType.InterfaceIsDual), Guid("xxxxxx-xxxx-xxxx-xxxx-xxxxxx")]
public interface Interface
{
void Method(String sParam);
}
方法(字符串)的简化实现:
[ClassInterface(ClassInterfaceType.None), Guid("xxxxxx-xxxx-xxxx-xxxx-xxxxxxxxx"), ProgId("Namespace.Class")]
public class Class: Interface
{
public void Method(String sParam)
{
XmlDocument xml = new XmlDocument();
xml.LoadXml(sParam);
XmlWriter writer = XmlWriter.Create("result.xml");
*** other code used to create the xml ***
}
}
即使没有返回错误,COM 似乎实际上也没有执行。但是,当我从测试应用程序和 COM 中取出字符串参数时,我确实得到了正确的输出(COM 接口在磁盘上创建了一个 XML 文件)。任何人都可以看到我使用参数的错误吗?