在com可见dll中重载方法

时间:2014-09-03 17:10:23

标签: c# dll vbscript overloading

我正在创建一个COM可见的dll,我试图重载一个方法。

基本上这段代码:

[ComVisible(true)]
[ProgId("TAF.TextLog")]
[Guid("af3f89ed-4732-4367-a222-2a95b8b75659")]
public class TextLog
{
    String _logFilePath;

    public TextLog()
    {
    }

    [ComVisible(true)]
    public void Create(string filePath)
    {
        String path = Path.GetDirectoryName(filePath);
        if (Directory.Exists(path))
        {
            _logFilePath = filePath;
        }

    [ComVisible(true)]
    public void Write(string message)
    {
        WriteMessage(null, message, AlertMsg.MsgTypes.Info);
    }

    [ComVisible(true)]
    public void Write(string title, string message, AlertMsg.MsgTypes messageType)
    {
        WriteMessage(title, message, messageType);
    }

    private void WriteMessage(string title, string message, AlertMsg.MsgTypes messageType)
    {
        using (StreamWriter file = new StreamWriter(_logFilePath, true))
        {
            if (title == null)
                file.WriteLine(String.Format("{0:yyyy-MM-dd HH:mm:ss}\t{1}", DateTime.Now, message));
            else
                file.WriteLine(String.Format("{0:yyyy-MM-dd HH:mm:ss}\t{1}\t{2}\t{3}", DateTime.Now, title, message, messageType));
        }
    }
}

但是看起来这是不可能的。如果我从调用程序调用.Write(这是一个非常简单的VBSCript),我得到一个错误,我的参数不正确。

这是调用VBscript代码:

Set myObj = CreateObject("TAF.TextLog")
myObj.Create("C:\temp\textlog.txt")
myObj.Write "title", "test message 1", 1

如果我在dll中只有一个.Write方法,它可以正常工作。有人可以告诉我,如果在dll中甚至可以实现这样的超载吗?

2 个答案:

答案 0 :(得分:2)

COM不支持成员重载,每个名称​​必须是唯一的。 IDispatch::GetIDsOfNames()不可避免的副作用。脚本解释器用于将脚本代码中使用的“写入”转换为dispid的函数。该方法仍然存在,没有办法让GetIDsOfNames()返回其dispid。类型库导出器通过重命名重载方法解决了这个问题,它将是Write_2()

当你使用后期绑定afaik时,没有解决方法,你必须避免重载。

答案 1 :(得分:0)

COM并不真正支持重载。

请参阅http://msdn.microsoft.com/en-us/library/ms182197(v=vs.80).aspx