我的问题与这两个问题非常相似:
C# - writing a COM server - events not firing on client
然而,对他们有用的不适合我。类型库文件没有任何事件定义提示,因此Delphi没有看到它。正如您所料,该类适用于其他C#应用程序。
COM服务器工具:
Delphi应用程序:
以下是代码的简化版本:
/// <summary>
/// Call has arrived delegate.
/// </summary>
[ComVisible(false)]
public delegate void CallArrived(object sender, string callData);
/// <summary>
/// Interface to expose SimpleAgent events to COM
/// </summary>
[ComVisible(true)]
[GuidAttribute("1FFBFF09-3AF0-4F06-998D-7F4B6CB978DD")]
[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface IAgentEvents
{
///<summary>
/// Handles incoming calls from the predictive manager.
///</summary>
///<param name="sender">The class that initiated this event</param>
///<param name="callData">The data associated with the incoming call.</param>
[DispId(1)]
void OnCallArrived(object sender, string callData);
}
/// <summary>
/// Represents the agent side of the system. This is usually related to UI interactions.
/// </summary>
[ComVisible(true)]
[GuidAttribute("EF00685F-1C14-4D05-9EFA-538B3137D86C")]
[ClassInterface(ClassInterfaceType.None)]
[ComSourceInterfaces(typeof(IAgentEvents))]
public class SimpleAgent
{
/// <summary>
/// Occurs when a call arrives.
/// </summary>
public event CallArrived OnCallArrived;
public SimpleAgent() {}
public string AgentName { get; set; }
public string CurrentPhoneNumber { get; set; }
public void FireOffCall()
{
if (OnCallArrived != null)
{
OnCallArrived(this, "555-123-4567");
}
}
}
类型库文件具有属性和方法的定义,但没有可见的事件。我甚至在Delphi的查看器中打开了类型库以确保它。 Delphi应用程序可以很好地查看和使用任何属性,方法和函数。它只是没有看到事件。
我希望阅读任何指示或文章。
谢谢!
答案 0 :(得分:5)
经过多次试验和错误,我终于解决了这个问题。我需要在C#代码上更改两件事。
1)[ClassInterface(ClassInterfaceType.None)]需要更改为[ClassInterface(ClassInterfaceType.AutoDual)]
2)作为事件源的类需要从MarshalByRefObject继承。如果在源类中完成任何线程,这会有所帮助。
我在Delphi方面只需要一件事。我需要确保选中“Generate Component Wrapper”复选框。这就是Delphi方面实际构建事件脚手架的原因。
这是你在Delphi 7中的做法:
新单元将具有COM事件的定义。