MethodBase.GetParameters Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
When overridden in a derived class, gets the parameters of the specified method or constructor.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.Reflection.ParameterInfo[]An array of type ParameterInfo containing information that matches the signature of the method (or constructor) reflected by this MethodBase instance.
Implements
_MethodBase.GetParameters()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.
// The following example uses instances of classes in // the System.Reflection namespace to discover an event argument type. using System; using System.Reflection; public delegate void MyDelegate(int i); public class MainClass { public event MyDelegate ev; public static void Main() { Type delegateType = typeof(MainClass).GetEvent("ev").EventHandlerType; MethodInfo invoke = delegateType.GetMethod("Invoke"); ParameterInfo[] pars = invoke.GetParameters(); foreach (ParameterInfo p in pars) { Console.WriteLine(p.ParameterType); } } }
-
ReflectionPermission
when invoked late-bound through mechanisms such as Type.InvokeMember. Associated enumeration: ReflectionPermissionFlag.MemberAccess.
Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.