10 references to Signature
System.Private.CoreLib (10)
src\System\Reflection\MethodBaseInvoker.CoreCLR.cs (2)
12
internal unsafe MethodBaseInvoker(RuntimeMethodInfo method) : this(method, method.
Signature
.Arguments)
14
_signature = method.
Signature
;
src\System\Reflection\MethodInvoker.CoreCLR.cs (2)
12
private unsafe MethodInvoker(RuntimeMethodInfo method) : this(method, method.
Signature
.Arguments)
14
_signature = method.
Signature
;
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (6)
77
m_parameters ??= RuntimeParameterInfo.GetParameters(this, this,
Signature
);
80
m_returnParameter ??= RuntimeParameterInfo.GetReturnParameter(this, this,
Signature
);
269
public override CallingConventions CallingConvention =>
Signature
.CallingConvention;
271
internal RuntimeType[] ArgumentTypes =>
Signature
.Arguments;
303
Signature sig =
Signature
;
316
public override Type ReturnType =>
Signature
.ReturnType;