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