29 references to DelegateBindingFlags
System.Private.CoreLib (29)
LibraryImports.g.cs (4)
153private static partial bool BindToMethodName(global::System.Runtime.CompilerServices.ObjectHandleOnStack d, global::System.Runtime.CompilerServices.ObjectHandleOnStack target, global::System.Runtime.CompilerServices.QCallTypeHandle methodType, string method, global::System.DelegateBindingFlags flags) 182static extern unsafe int __PInvoke(global::System.Runtime.CompilerServices.ObjectHandleOnStack __d_native, global::System.Runtime.CompilerServices.ObjectHandleOnStack __target_native, global::System.Runtime.CompilerServices.QCallTypeHandle __methodType_native, byte* __method_native, global::System.DelegateBindingFlags __flags_native); 191private static partial bool BindToMethodInfo(global::System.Runtime.CompilerServices.ObjectHandleOnStack d, global::System.Runtime.CompilerServices.ObjectHandleOnStack target, global::System.RuntimeMethodHandleInternal method, global::System.Runtime.CompilerServices.QCallTypeHandle methodType, global::System.DelegateBindingFlags flags) 204static extern unsafe int __PInvoke(global::System.Runtime.CompilerServices.ObjectHandleOnStack __d_native, global::System.Runtime.CompilerServices.ObjectHandleOnStack __target_native, global::System.RuntimeMethodHandleInternal __method_native, global::System.Runtime.CompilerServices.QCallTypeHandle __methodType_native, global::System.DelegateBindingFlags __flags_native);
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)
372DelegateBindingFlags.OpenDelegateOnly | DelegateBindingFlags.RelaxedSignature); 385DelegateBindingFlags.RelaxedSignature); 388private Delegate CreateDelegateInternal(Type delegateType, object? firstArgument, DelegateBindingFlags bindingFlags)