Delegate Members
.NET Framework 2.0
Represents a delegate, which is a data structure that refers to a static method or to a class instance and an instance method of that class.
The following tables list the members exposed by the Delegate type.
(see also
Protected Methods
)
Top
| Name | Description | |
|---|---|---|
| Clone | Creates a shallow copy of the delegate. |
| Combine | Overloaded. Concatenates the invocation lists of the specified multicast (combinable) delegates. |
| CreateDelegate | Overloaded. Creates a delegate of the specified type. |
| DynamicInvoke | Dynamically invokes (late-bound) the method represented by the current delegate. |
| Equals | Overloaded. Overridden. |
| GetHashCode | Overridden. Returns a hash code for the delegate. |
| GetInvocationList | Returns the invocation list of the delegate. |
| GetObjectData | Not supported. |
| GetType | Gets the Type of the current instance. (Inherited from Object.) |
| op_Equality | Determines whether the specified delegates are equal. |
| op_Inequality | Determines whether the specified delegates are not equal. |
| ReferenceEquals | Determines whether the specified Object instances are the same instance. (Inherited from Object.) |
| Remove | Removes the last occurrence of the invocation list of a delegate from the invocation list of another delegate. |
| RemoveAll | Removes all occurrences of the invocation list of a delegate from the invocation list of another delegate. |
| ToString | Returns a String that represents the current Object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
| CombineImpl | Concatenates the invocation lists of the specified multicast (combinable) delegate and the current multicast (combinable) delegate. |
| DynamicInvokeImpl | Dynamically invokes (late-bound) the method represented by the current delegate. |
| Finalize | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.) |
| GetMethodImpl | Gets the static method represented by the current delegate. |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
| RemoveImpl | Removes the invocation list of a delegate from the invocation list of another delegate. |
Reference
Delegate ClassSystem Namespace
MulticastDelegate