MulticastDelegate 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 MulticastDelegate 类的新实例。
重载
MulticastDelegate(Object, String) |
初始化 MulticastDelegate 类的新实例。 |
MulticastDelegate(Type, String) |
初始化 MulticastDelegate 类的新实例。 |
MulticastDelegate(Object, String)
- Source:
- MulticastDelegate.cs
- Source:
- MulticastDelegate.cs
- Source:
- MulticastDelegate.cs
初始化 MulticastDelegate 类的新实例。
protected:
MulticastDelegate(System::Object ^ target, System::String ^ method);
protected MulticastDelegate (object target, string method);
new MulticastDelegate : obj * string -> MulticastDelegate
Protected Sub New (target As Object, method As String)
参数
- target
- Object
在其上定义 method
的对象。
- method
- String
为其创建委托的方法的名称。
例外
无法创建抽象类的实例,或者此成员是使用晚期绑定机制调用的。
注解
此构造函数不能在应用程序代码中使用。 若要通过指定实例方法的名称来创建委托,请使用方法的 Delegate.CreateDelegate 重载,指定方法名称和目标对象。 例如, Delegate.CreateDelegate(Type, Object, String) 方法重载为具有指定名称的实例方法创建委托。
适用于
MulticastDelegate(Type, String)
- Source:
- MulticastDelegate.cs
- Source:
- MulticastDelegate.cs
- Source:
- MulticastDelegate.cs
初始化 MulticastDelegate 类的新实例。
protected:
MulticastDelegate(Type ^ target, System::String ^ method);
protected MulticastDelegate (Type target, string method);
new MulticastDelegate : Type * string -> MulticastDelegate
Protected Sub New (target As Type, method As String)
参数
- target
- Type
在其上定义 method
的对象的类型。
- method
- String
为其创建委托的静态方法的名称。
例外
无法创建抽象类的实例,或者此成员是使用晚期绑定机制调用的。
注解
此构造函数不能在应用程序代码中使用。 若要通过指定静态方法的名称创建委托,请使用 指定方法名称但不指定目标对象的 方法的 Delegate.CreateDelegate 重载。 例如, Delegate.CreateDelegate(Type, Type, String) 方法重载为具有指定名称的方法创建静态委托。