MethodBase.GetParameters Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
When overridden in a derived class, gets the parameters of this method or constructor.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.Reflection.ParameterInfo ()An array that contains the parameters of this method or constructor.
| Exception | Condition |
|---|---|
| MethodAccessException | This member is invoked late-bound through mechanisms such as Type.InvokeMember. |
The following example uses the GetParameters method to retrieve the parameters of the Invoke method of a delegate.
The example defines a delegate named MyDelegate and an event named ev 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 have static TextBlock controls for Windows Phone 8. |
Imports System.Reflection Public Delegate Sub MyDelegate(ByVal i As Integer, ByRef s As String) Public Class Example Public Event MyEvent As MyDelegate Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock) Dim delegateType As Type = GetType(Example).GetEvent("MyEvent").EventHandlerType ' The Invoke method of a delegate type always has the same signature ' as the delegate. Dim invoke As MethodInfo = delegateType.GetMethod("Invoke") For Each p As ParameterInfo In invoke.GetParameters() outputBlock.Text &= p.ParameterType.ToString() & vbLf Next p End Sub End Class ' This example produces the following output: ' 'System.Int32 'System.String&
Note: