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