1 instantiation of DefaultBinder
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\DefaultBinder.cs (1)
16
internal 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)
16
internal static readonly
DefaultBinder
Instance = new DefaultBinder();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
885
public static Binder DefaultBinder => System.
DefaultBinder
.Instance;
System\Reflection\Runtime\BindingFlagSupport\MethodPolicies.cs (1)
73
return
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)
134
if (binder == null || binder is
DefaultBinder
|| ((invokeAttr & BindingFlags.ExactBinding) != 0))
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.BindingFlags.cs (2)
38
return System.
DefaultBinder
.ExactBinding(candidates.ToArray(), types) as ConstructorInfo;
152
return
DefaultBinder
.ExactPropertyBinding(candidates.ToArray(), returnType, types);