Base:
method
GetParametersAsSpan
System.Reflection.MethodBase.GetParametersAsSpan()
5 references to GetParametersAsSpan
System.Private.CoreLib (5)
Internal\Reflection\Augments\ReflectionAugments.cs (1)
349
ReadOnlySpan<ParameterInfo> parameters = invokeMethod.
GetParametersAsSpan
();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Attribute.cs (1)
363
return 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)
345
ReadOnlySpan<ParameterInfo> delegateParameters = invokeMethod.
GetParametersAsSpan
();
346
ReadOnlySpan<ParameterInfo> targetParameters = this.
GetParametersAsSpan
();