InstallEventHandler 委托

定义

public delegate void InstallEventHandler(System::Object ^ sender, InstallEventArgs ^ e);
public delegate void InstallEventHandler(object sender, InstallEventArgs e);
type InstallEventHandler = delegate of obj * InstallEventArgs -> unit
Public Delegate Sub InstallEventHandler(sender As Object, e As InstallEventArgs)

参数

sender
Object

事件源。

e
InstallEventArgs

包含事件数据的 InstallEventArgs

注解

创建 InstallEventHandler 委托时,需要标识将要处理该事件的方法。 若要将事件与事件处理程序关联,请将该委托的一个实例添加到事件中。 除非移除了该委托,否则每当发生该事件时就会调用事件处理程序。 有关事件处理程序委托的详细信息,请参阅 处理和引发事件

扩展方法

GetMethodInfo(Delegate)

获取指示指定委托表示的方法的对象。

适用于

另请参阅