14 references to Arguments
System.Private.CoreLib (14)
src\System\Reflection\ConstructorInvoker.CoreCLR.cs (1)
10
internal unsafe ConstructorInvoker(RuntimeConstructorInfo constructor) : this(constructor, constructor.Signature.
Arguments
)
src\System\Reflection\Emit\DynamicMethod.CoreCLR.cs (1)
133
if (Signature.
Arguments
.Length != argCount)
src\System\Reflection\MethodBaseInvoker.CoreCLR.cs (3)
12
internal unsafe MethodBaseInvoker(RuntimeMethodInfo method) : this(method, method.Signature.
Arguments
)
19
internal unsafe MethodBaseInvoker(RuntimeConstructorInfo constructor) : this(constructor, constructor.Signature.
Arguments
)
26
internal unsafe MethodBaseInvoker(DynamicMethod method, Signature signature) : this(method, signature.
Arguments
)
src\System\Reflection\MethodInvoker.CoreCLR.cs (3)
12
private unsafe MethodInvoker(RuntimeMethodInfo method) : this(method, method.Signature.
Arguments
)
19
private unsafe MethodInvoker(DynamicMethod method) : this(method, method.Signature.
Arguments
)
26
private unsafe MethodInvoker(RuntimeConstructorInfo constructor) : this(constructor, constructor.Signature.
Arguments
)
src\System\Reflection\RuntimeConstructorInfo.CoreCLR.cs (1)
200
internal RuntimeType[] ArgumentTypes => Signature.
Arguments
;
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (2)
271
internal RuntimeType[] ArgumentTypes => Signature.
Arguments
;
304
if (sig.
Arguments
.Length != 1)
src\System\Reflection\RuntimeParameterInfo.cs (2)
38
int sigArgCount = sig.
Arguments
.Length;
227
parameterType = m_signature.
Arguments
[PositionImpl];
src\System\Reflection\RuntimePropertyInfo.cs (1)
124
RuntimeType[] arguments = Signature.
Arguments
;