29 references to DelegateBindingFlags
System.Private.CoreLib (29)
LibraryImports.g.cs (4)
153
private 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)
182
static 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);
191
private 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)
204
static 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)
49
DelegateBindingFlags
.InstanceMethodOnly |
50
DelegateBindingFlags
.ClosedDelegateOnly))
75
DelegateBindingFlags
.StaticMethodOnly |
76
DelegateBindingFlags
.OpenDelegateOnly |
77
DelegateBindingFlags
.CaselessMatching);
245
DelegateBindingFlags
.InstanceMethodOnly |
246
DelegateBindingFlags
.ClosedDelegateOnly |
247
DelegateBindingFlags
.NeverCloseOverNull |
248
(ignoreCase ?
DelegateBindingFlags
.CaselessMatching : 0)))
282
DelegateBindingFlags
.StaticMethodOnly |
283
DelegateBindingFlags
.OpenDelegateOnly |
284
(ignoreCase ?
DelegateBindingFlags
.CaselessMatching : 0)))
322
DelegateBindingFlags
.OpenDelegateOnly |
DelegateBindingFlags
.RelaxedSignature);
354
DelegateBindingFlags
.RelaxedSignature);
390
DelegateBindingFlags
.RelaxedSignature))
395
internal static Delegate? CreateDelegateInternal(RuntimeType rtType, RuntimeMethodInfo rtMethod, object? firstArgument,
DelegateBindingFlags
flags)
411
private bool BindToMethodName(object? target, [DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.AllMethods)] RuntimeType methodType, string method,
DelegateBindingFlags
flags)
420
private static partial bool BindToMethodName(ObjectHandleOnStack d, ObjectHandleOnStack target, QCallTypeHandle methodType, string method,
DelegateBindingFlags
flags);
422
private bool BindToMethodInfo(object? target, IRuntimeMethodInfo method, RuntimeType methodType,
DelegateBindingFlags
flags)
433
private static partial bool BindToMethodInfo(ObjectHandleOnStack d, ObjectHandleOnStack target, RuntimeMethodHandleInternal method, QCallTypeHandle methodType,
DelegateBindingFlags
flags);
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (4)
372
DelegateBindingFlags
.OpenDelegateOnly |
DelegateBindingFlags
.RelaxedSignature);
385
DelegateBindingFlags
.RelaxedSignature);
388
private Delegate CreateDelegateInternal(Type delegateType, object? firstArgument,
DelegateBindingFlags
bindingFlags)