1 instantiation of DefaultBinder
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\DefaultBinder.cs (1)
16internal static readonly DefaultBinder Instance = new DefaultBinder();
6 references to DefaultBinder
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\DefaultBinder.cs (1)
16internal static readonly DefaultBinder Instance = new DefaultBinder();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
885public static Binder DefaultBinder => System.DefaultBinder.Instance;
System\Reflection\Runtime\BindingFlagSupport\MethodPolicies.cs (1)
73return DefaultBinder.CompareMethodSig(m1, m2); // If all candidates have the same signature, pick the most derived one without throwing an AmbiguousMatchException.
System\Reflection\Runtime\General\Helpers.cs (1)
134if (binder == null || binder is DefaultBinder || ((invokeAttr & BindingFlags.ExactBinding) != 0))
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.BindingFlags.cs (2)
38return System.DefaultBinder.ExactBinding(candidates.ToArray(), types) as ConstructorInfo; 152return DefaultBinder.ExactPropertyBinding(candidates.ToArray(), returnType, types);