10 overrides of GetConstructorImpl
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
373
protected override ConstructorInfo
GetConstructorImpl
(BindingFlags bindingAttr, Binder? binder,
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
164
protected override ConstructorInfo
GetConstructorImpl
(BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[] types, ParameterModifier[]? modifiers) { throw new NotSupportedException(SR.Format(SR.NotSupported_TypeBuilderInstantiation_ResolvingMembers, nameof(TypeBuilder.GetConstructor))); }
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
102
protected override ConstructorInfo?
GetConstructorImpl
(BindingFlags bindingAttr, Binder? binder,
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
185
protected sealed override ConstructorInfo
GetConstructorImpl
(BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[] types, ParameterModifier[]? modifiers) => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
63
protected override ConstructorInfo?
GetConstructorImpl
(BindingFlags bindingAttr, Binder? binder,
System\RuntimeType.NativeAot.cs (1)
710
protected override ConstructorInfo?
GetConstructorImpl
(BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[] types, ParameterModifier[]? modifiers)
System.Private.Reflection.Execution (1)
Internal\Reflection\Execution\TypeLoader\ConstraintValidatorSupport.cs (1)
184
protected override ConstructorInfo
GetConstructorImpl
(BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) { Debug.Assert(false); throw NotImplemented.ByDesign; }
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
303
protected override ConstructorInfo?
GetConstructorImpl
(BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[] types, ParameterModifier[]? modifiers)
System.Reflection.Emit (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
373
protected override ConstructorInfo
GetConstructorImpl
(BindingFlags bindingAttr, Binder? binder,
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\RuntimeTypeInfo.BindingFlags.cs (1)
14
protected sealed override ConstructorInfo?
GetConstructorImpl
(BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers)
2 references to GetConstructorImpl
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Type.cs (2)
156
get =>
GetConstructorImpl
(BindingFlags.Static | BindingFlags.Public | BindingFlags.NonPublic, null, CallingConventions.Any, [], null);
195
return
GetConstructorImpl
(bindingAttr, binder, callConvention, types, modifiers);