MulticastDelegate Constructor (Object, String)
![]() |
---|
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience. |
Initializes a new instance of the MulticastDelegate class.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- target
-
Type:
System.Object
The object on which method is defined.
- method
-
Type:
System.String
The name of the method for which a delegate is created.
Exception | Condition |
---|---|
MemberAccessException | Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. |
This constructor cannot be used in application code. To create a delegate by specifying the name of an instance method, use an overload of the Delegate.CreateDelegate method that specifies a method name and a target object. For example, the Delegate.CreateDelegate(Type, Object, String) method overload creates a delegate for an instance method with a specified name.
when invoked late-bound through mechanisms such as Type.InvokeMember. Associated enumeration: ReflectionPermissionFlag.MemberAccess.
Available since 1.1
Silverlight
Available since 2.0