25 references to DelegateBindingFlags
System.Private.CoreLib (25)
src\System\Delegate.CoreCLR.cs (21)
49DelegateBindingFlags.InstanceMethodOnly | 50DelegateBindingFlags.ClosedDelegateOnly)) 75DelegateBindingFlags.StaticMethodOnly | 76DelegateBindingFlags.OpenDelegateOnly | 77DelegateBindingFlags.CaselessMatching); 245DelegateBindingFlags.InstanceMethodOnly | 246DelegateBindingFlags.ClosedDelegateOnly | 247DelegateBindingFlags.NeverCloseOverNull | 248(ignoreCase ? DelegateBindingFlags.CaselessMatching : 0))) 282DelegateBindingFlags.StaticMethodOnly | 283DelegateBindingFlags.OpenDelegateOnly | 284(ignoreCase ? DelegateBindingFlags.CaselessMatching : 0))) 322DelegateBindingFlags.OpenDelegateOnly | DelegateBindingFlags.RelaxedSignature); 354DelegateBindingFlags.RelaxedSignature); 390DelegateBindingFlags.RelaxedSignature)) 395internal static Delegate? CreateDelegateInternal(RuntimeType rtType, RuntimeMethodInfo rtMethod, object? firstArgument, DelegateBindingFlags flags) 411private bool BindToMethodName(object? target, [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.AllMethods)] RuntimeType methodType, string method, DelegateBindingFlags flags) 420private static partial bool BindToMethodName(ObjectHandleOnStack d, ObjectHandleOnStack target, QCallTypeHandle methodType, string method, DelegateBindingFlags flags); 422private bool BindToMethodInfo(object? target, IRuntimeMethodInfo method, RuntimeType methodType, DelegateBindingFlags flags) 433private static partial bool BindToMethodInfo(ObjectHandleOnStack d, ObjectHandleOnStack target, RuntimeMethodHandleInternal method, QCallTypeHandle methodType, DelegateBindingFlags flags);
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (4)
363DelegateBindingFlags.OpenDelegateOnly | DelegateBindingFlags.RelaxedSignature); 376DelegateBindingFlags.RelaxedSignature); 379private Delegate CreateDelegateInternal(Type delegateType, object? firstArgument, DelegateBindingFlags bindingFlags)