3 overrides of CreateDelegate
System.Private.CoreLib (2)
System\Reflection\Runtime\MethodInfos\CustomMethodInvoker.cs (1)
81
public sealed override Delegate
CreateDelegate
(RuntimeTypeHandle delegateType, object target, bool isStatic, bool isVirtual, bool isOpen)
System\Reflection\Runtime\MethodInfos\OpenMethodInvoker.cs (1)
47
public 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)
21
public 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)
400
return MethodInvoker.
CreateDelegate
(delegateType.TypeHandle, target, isStatic: isStatic, isVirtual: false, isOpen: isOpen);