1 instantiation of DefaultBinder
System.Reflection.MetadataLoadContext (1)
System\Reflection\MetadataLoadContext.CoreAssembly.cs (1)
87internal Binder GetDefaultBinder() => _lazyDefaultBinder ??= new DefaultBinder(this);
3 references to DefaultBinder
System.Reflection.MetadataLoadContext (3)
System\Reflection\Runtime\BindingFlagSupport\MethodPolicies.cs (1)
64return 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)
39return System.DefaultBinder.ExactBinding(candidates.ToArray(), types) as ConstructorInfo; 157return System.DefaultBinder.ExactPropertyBinding(candidates.ToArray(), returnType, types);