28 references to DelegateBindingFlags
mscorlib (28)
system\delegate.cs (24)
63DelegateBindingFlags.InstanceMethodOnly | 64DelegateBindingFlags.ClosedDelegateOnly)) 96DelegateBindingFlags.StaticMethodOnly | 97DelegateBindingFlags.OpenDelegateOnly | 98DelegateBindingFlags.CaselessMatching); 406DelegateBindingFlags.InstanceMethodOnly | 407DelegateBindingFlags.ClosedDelegateOnly | 408DelegateBindingFlags.NeverCloseOverNull | 409(ignoreCase ? DelegateBindingFlags.CaselessMatching : 0))) 469DelegateBindingFlags.StaticMethodOnly | 470DelegateBindingFlags.OpenDelegateOnly | 471(ignoreCase ? DelegateBindingFlags.CaselessMatching : 0))) 517DelegateBindingFlags.OpenDelegateOnly | DelegateBindingFlags.RelaxedSignature, 565DelegateBindingFlags.RelaxedSignature, 634DelegateBindingFlags.RelaxedSignature | DelegateBindingFlags.SkipSecurityChecks)) 667DelegateBindingFlags.SkipSecurityChecks | 668DelegateBindingFlags.RelaxedSignature); 683internal static Delegate CreateDelegateInternal(RuntimeType rtType, RuntimeMethodInfo rtMethod, Object firstArgument, DelegateBindingFlags flags, ref StackCrawlMark stackMark) 685Contract.Assert((flags & DelegateBindingFlags.SkipSecurityChecks) == 0); 704internal static Delegate UnsafeCreateDelegate(RuntimeType rtType, RuntimeMethodInfo rtMethod, Object firstArgument, DelegateBindingFlags flags) 728private extern bool BindToMethodName(Object target, RuntimeType methodType, String method, DelegateBindingFlags flags); 733private extern bool BindToMethodInfo(Object target, IRuntimeMethodInfo method, RuntimeType methodType, DelegateBindingFlags flags);
system\reflection\methodinfo.cs (4)
868DelegateBindingFlags.OpenDelegateOnly | DelegateBindingFlags.RelaxedSignature, 885DelegateBindingFlags.RelaxedSignature, 890private Delegate CreateDelegateInternal(Type delegateType, Object firstArgument, DelegateBindingFlags bindingFlags, ref StackCrawlMark stackMark)