3 instantiations of MethodBaseInvoker
System.Private.CoreLib (3)
src\System\Reflection\Emit\DynamicMethod.CoreCLR.cs (1)
93return _invoker ??= new MethodBaseInvoker(this, Signature);
src\System\Reflection\RuntimeConstructorInfo.CoreCLR.cs (1)
49m_invoker ??= new MethodBaseInvoker(this);
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (1)
48m_invoker ??= new MethodBaseInvoker(this);
21 references to MethodBaseInvoker
System.Private.CoreLib (21)
src\libraries\System.Private.CoreLib\src\System\Reflection\ConstructorInvoker.cs (6)
90MethodBaseInvoker.ThrowTargetParameterCountException(); 108MethodBaseInvoker.ThrowTargetParameterCountException(); 121MethodBaseInvoker.ThrowTargetParameterCountException(); 135MethodBaseInvoker.ThrowTargetParameterCountException(); 150MethodBaseInvoker.ThrowTargetParameterCountException(); 207MethodBaseInvoker.ThrowTargetParameterCountException();
src\libraries\System.Private.CoreLib\src\System\Reflection\MethodInvoker.cs (6)
120MethodBaseInvoker.ThrowTargetParameterCountException(); 136MethodBaseInvoker.ThrowTargetParameterCountException(); 150MethodBaseInvoker.ThrowTargetParameterCountException(); 165MethodBaseInvoker.ThrowTargetParameterCountException(); 181MethodBaseInvoker.ThrowTargetParameterCountException(); 244MethodBaseInvoker.ThrowTargetParameterCountException();
src\libraries\System.Private.CoreLib\src\System\Reflection\RuntimeConstructorInfo.cs (2)
118MethodBaseInvoker.ThrowTargetParameterCountException(); 150MethodBaseInvoker.ThrowTargetParameterCountException();
src\libraries\System.Private.CoreLib\src\System\Reflection\RuntimeMethodInfo.cs (1)
121MethodBaseInvoker.ThrowTargetParameterCountException();
src\System\Reflection\Emit\DynamicMethod.CoreCLR.cs (2)
27private MethodBaseInvoker? _invoker; 88private MethodBaseInvoker Invoker
src\System\Reflection\RuntimeConstructorInfo.CoreCLR.cs (2)
31private MethodBaseInvoker? m_invoker; 44private MethodBaseInvoker Invoker
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (2)
30private MethodBaseInvoker? m_invoker; 43private MethodBaseInvoker Invoker