C# .NET Delegates : Methods and Properties
The following table is a list of some of the public properties and methods of the MulticastDelegate type. Some of the members are inherited from System.Delegate.
|
Member |
Description |
|
BeginInvoke |
Invokes a delegate asynchronously. |
|
Combine |
Combines delegates into a multicast delegate. This is a static method. |
|
CreateDelegate |
Defines a delegate at run time. This is a static method. |
|
DynamicInvoke |
Dynamically invokes a delegate that was created at run time. |
|
EndInvoke |
Requests the results of a delegate that was executed asynchronously. |
|
Invoke |
Executes a delegate, which calls all functions contained in the delegate. |
|
Method |
This is a property that returns the MethodInfo type of the last function in the invocation list. MethodInfo provides a description of a function. |
|
Remove |
Removes a delegate from a multicast delegate. This is a static method. |
|
RemoveAll |
Removes the invocation list of a delegate from the invocation list of another delegate. The result is returned. This is a static method. |
|
Target |
This is a property that returns the instance of the last function in the invocation list. For static functions, Target is null. |
-
Archives
- February 2009 (1)
- November 2008 (6)
- October 2008 (4)
- September 2008 (13)
- August 2008 (11)
- July 2008 (29)
- June 2008 (19)
- May 2008 (8)
-
Categories
-
RSS
Entries RSS
Comments RSS

