Base:
method
GetParametersAsSpan
System.Reflection.MethodBase.GetParametersAsSpan()
5 references to GetParametersAsSpan
System.Private.CoreLib (5)
Internal\Reflection\Augments\ReflectionAugments.cs (1)
349ReadOnlySpan<ParameterInfo> parameters = invokeMethod.GetParametersAsSpan();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Attribute.cs (1)
363return rtMethod.GetParametersAsSpan()[position]; // Point to the correct ParameterInfo of the method
System\Reflection\MethodInvoker.cs (1)
22_parameterCount = method.GetParametersAsSpan().Length;
System\Reflection\RuntimeMethodInfo.cs (2)
345ReadOnlySpan<ParameterInfo> delegateParameters = invokeMethod.GetParametersAsSpan(); 346ReadOnlySpan<ParameterInfo> targetParameters = this.GetParametersAsSpan();