13 overrides of GetConstructorImpl
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
371protected override ConstructorInfo GetConstructorImpl(BindingFlags bindingAttr, Binder? binder,
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
165protected override ConstructorInfo GetConstructorImpl(BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[] types, ParameterModifier[]? modifiers) { throw new NotSupportedException(); }
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
101protected override ConstructorInfo? GetConstructorImpl(BindingFlags bindingAttr, Binder? binder,
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
181protected sealed override ConstructorInfo GetConstructorImpl(BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[] types, ParameterModifier[]? modifiers) => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
61protected override ConstructorInfo? GetConstructorImpl(BindingFlags bindingAttr, Binder? binder,
src\System\Reflection\Emit\RuntimeEnumBuilder.cs (1)
92protected override ConstructorInfo? GetConstructorImpl(BindingFlags bindingAttr, Binder? binder,
src\System\Reflection\Emit\RuntimeGenericTypeParameterBuilder.cs (1)
103protected override ConstructorInfo GetConstructorImpl(BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[] types, ParameterModifier[]? modifiers) { throw new NotSupportedException(); }
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (1)
662protected override ConstructorInfo? GetConstructorImpl(BindingFlags bindingAttr, Binder? binder,
src\System\RuntimeType.CoreCLR.cs (1)
2829protected override ConstructorInfo? GetConstructorImpl(
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
303protected override ConstructorInfo? GetConstructorImpl(BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[] types, ParameterModifier[]? modifiers)
System.Reflection.Emit (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
371protected override ConstructorInfo GetConstructorImpl(BindingFlags bindingAttr, Binder? binder,
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\RuntimeTypeInfo.BindingFlags.cs (1)
14protected sealed override ConstructorInfo? GetConstructorImpl(BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers)
System.Windows.Forms.Tests (1)
System\Windows\Forms\ListBindingHelperTests.cs (1)
915protected override ConstructorInfo GetConstructorImpl(BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers)
2 references to GetConstructorImpl
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Type.cs (2)
156get => GetConstructorImpl(BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic, null, CallingConventions.Any, EmptyTypes, null); 195return GetConstructorImpl(bindingAttr, binder, callConvention, types, modifiers);