4 overrides of UncachedMethodInvoker
System.Private.CoreLib (4)
System\Reflection\Runtime\MethodInfos\RuntimeConstructedGenericMethodInfo.cs (1)
179protected sealed override MethodBaseInvoker UncachedMethodInvoker
System\Reflection\Runtime\MethodInfos\RuntimeDummyMethodInfo.cs (1)
42protected sealed override MethodBaseInvoker UncachedMethodInvoker { get { throw NotImplemented.ByDesign; } }
System\Reflection\Runtime\MethodInfos\RuntimeNamedMethodInfo.cs (1)
306protected sealed override MethodBaseInvoker UncachedMethodInvoker
System\Reflection\Runtime\MethodInfos\RuntimeSyntheticMethodInfo.cs (1)
174protected sealed override MethodBaseInvoker UncachedMethodInvoker => new CustomMethodInvoker(_declaringType.ToType(), _runtimeParameterTypes.ToTypeArray(), _options, _action);
1 reference to UncachedMethodInvoker
System.Private.CoreLib (1)
System\Reflection\Runtime\MethodInfos\RuntimeMethodInfo.cs (1)
296return _lazyMethodInvoker ??= UncachedMethodInvoker;