1 instantiation of DefaultBinder
System.Reflection.MetadataLoadContext (1)
System\Reflection\MetadataLoadContext.CoreAssembly.cs (1)
87
internal Binder GetDefaultBinder() => _lazyDefaultBinder ??= new
DefaultBinder
(this);
3 references to DefaultBinder
System.Reflection.MetadataLoadContext (3)
System\Reflection\Runtime\BindingFlagSupport\MethodPolicies.cs (1)
64
return
DefaultBinder
.CompareMethodSig(m1, m2); // If all candidates have the same signature, pick the most derived one without throwing an AmbiguousMatchException.
System\Reflection\TypeLoading\RuntimeTypeInfo.BindingFlags.cs (2)
39
return System.
DefaultBinder
.ExactBinding(candidates.ToArray(), types) as ConstructorInfo;
157
return System.
DefaultBinder
.ExactPropertyBinding(candidates.ToArray(), returnType, types);