Delegate Constructor (Object, String)
Initializes a delegate that invokes the specified instance method on the specified class instance.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- target
- Type: System::Object
The class instance on which the delegate invokes method.
- method
- Type: System::String
The name of the instance method that the delegate represents.
| Exception | Condition |
|---|---|
| ArgumentNullException | target is nullptr. -or- method is nullptr. |
| ArgumentException | There was an error binding to the target method. |
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 CreateDelegate method that specifies a method name and a target object. For example, the CreateDelegate method overload creates a delegate for an instance method with a specified name.
This constructor creates delegates for instance methods only. An instance method is a method that is associated with an instance of a class; a static method is a method that is associated with the class itself.
- ReflectionPermission
when invoked late-bound through mechanisms such as Type::InvokeMember. Associated enumeration: ReflectionPermissionFlag::MemberAccess
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.