Click or drag to resize
MulticastDelegate Class
Represents a multicast delegate; that is, a delegate that can have more than one element in its invocation list.
Inheritance Hierarchy

Namespace: System
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
[SerializableAttribute]
public abstract class MulticastDelegate : Delegate

The MulticastDelegate type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether this multicast delegate and the specified object are equal.
(Overrides DelegateEquals(Object).)
Public methodGetHashCode
Returns the hash code for this instance.
(Overrides DelegateGetHashCode.)
Public methodGetInvocationList
Returns the invocation list of this multicast delegate, in invocation order.
(Overrides DelegateGetInvocationList.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyMethod
Gets the method represented by the delegate.
(Inherited from Delegate.)
Public propertyTarget
Gets the class instance on which the current delegate invokes the instance method.
(Inherited from Delegate.)
Top
See Also