17 references to DefaultBinder
Microsoft.Build.Framework (1)
Utilities\TypeExtensions.cs (1)
95return type.InvokeMember(name, bindingFlags, Type.DefaultBinder, target, args, CultureInfo.InvariantCulture);
System.ComponentModel.Composition (1)
System\ComponentModel\Composition\ExportServices.cs (1)
42Type.DefaultBinder,
System.Private.CoreLib (7)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\FieldInfo.cs (1)
68public void SetValue(object? obj, object? value) => SetValue(obj, value, BindingFlags.Default, Type.DefaultBinder, null);
System\ActivatorImplementation.cs (1)
99binder ??= Type.DefaultBinder;
System\Reflection\BinderBundle.cs (1)
20Debug.Assert(binder != null && binder != Type.DefaultBinder, "Not permitted to allocate a BinderBundle for the default Binder. Must pass a null BinderBundle instread.");
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.BindingFlags.cs (3)
40binder ??= Type.DefaultBinder; 89binder ??= Type.DefaultBinder; 154binder ??= Type.DefaultBinder;
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.InvokeMember.cs (1)
77binder ??= Type.DefaultBinder;
System.Reflection.Context (2)
System\Reflection\Context\Custom\CustomType.cs (2)
135binder ??= Type.DefaultBinder; 277binder ??= Type.DefaultBinder;
System.Reflection.Emit (1)
System\Reflection\Emit\TypeBuilderImpl.cs (1)
1072binder ??= DefaultBinder;
System.Security.Cryptography (3)
System\Security\Cryptography\CryptoConfig.cs (3)
467ConstructorInfo? rci = Type.DefaultBinder.BindToMethod( 483object retval = rci.Invoke(ConstructorDefault, Type.DefaultBinder, args, null); 488Type.DefaultBinder.ReorderArgumentArray(ref args, state);
System.Xaml (2)
System\Xaml\Runtime\ClrObjectRuntime.cs (1)
141return Type.DefaultBinder.BindToMethod(
System\Xaml\XamlType.cs (1)
674MethodBase result = Type.DefaultBinder.SelectMethod(ConstructorBindingFlags, ctorArray, paramTypes, null);