3 overrides of CreateDelegate
System.Private.CoreLib (2)
System\Reflection\Runtime\MethodInfos\CustomMethodInvoker.cs (1)
81public sealed override Delegate CreateDelegate(RuntimeTypeHandle delegateType, object target, bool isStatic, bool isVirtual, bool isOpen)
System\Reflection\Runtime\MethodInfos\OpenMethodInvoker.cs (1)
47public sealed override Delegate CreateDelegate(RuntimeTypeHandle delegateType, object target, bool isStatic, bool isVirtual, bool isOpen)
System.Private.Reflection.Execution (1)
Internal\Reflection\Execution\MethodInvokers\MethodInvokerWithMethodInvokeInfo.cs (1)
21public override Delegate CreateDelegate(RuntimeTypeHandle delegateType, object target, bool isStatic, bool isVirtual, bool isOpen)
1 reference to CreateDelegate
System.Private.CoreLib (1)
System\Reflection\Runtime\MethodInfos\RuntimeMethodInfo.cs (1)
400return MethodInvoker.CreateDelegate(delegateType.TypeHandle, target, isStatic: isStatic, isVirtual: false, isOpen: isOpen);