MulticastDelegate Constructor

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Updated: June 2010

Initializes a new instance of the MulticastDelegate class.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Protected Sub New ( _
    target As Object, _
    method As String _
)
protected MulticastDelegate(
    Object target,
    string method
)

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.

Exceptions

Exception Condition
MemberAccessException

Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism.

Remarks

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.

Version Information

Silverlight

Supported in: 5, 4, 3

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Change History

Date

History

Reason

June 2010

Clarified that this constructor is not used in application code.

Customer feedback.