EventInfo.EventHandlerType Property
Gets the Type object of the underlying event-handler delegate associated with this event.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
The following example uses the EventHandlerType property to discover the delegate type of an event and to display its parameter types.
The example defines a delegate named MyDelegate and an event named MyEvent of type MyDelegate. The code in the Main method discovers the event signature by getting the delegate type of the event, getting the Invoke method of the delegate type, and then retrieving and displaying the parameters.
Note: |
|---|
To run this example, see Building Examples That Use a Demo Method and a TextBlock Control. |
using System; using System.Reflection; public delegate void MyDelegate(int i, ref string s); public class Example { public event MyDelegate MyEvent; public static void Demo(System.Windows.Controls.TextBlock outputBlock) { Type delegateType = typeof(Example).GetEvent("MyEvent").EventHandlerType; // The Invoke method of a delegate type always has the same signature // as the delegate. MethodInfo invoke = delegateType.GetMethod("Invoke"); foreach( ParameterInfo p in invoke.GetParameters() ) { outputBlock.Text += p.ParameterType.ToString() + "\n"; } } } /* This example produces the following output: System.Int32 System.String& */
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Note: