8 references to GetConstructor
illink (1)
ILLink.RoslynAnalyzer (1)
src\tools\illink\src\ILLink.Shared\TrimAnalysis\IntrinsicId.cs (1)
79 /// <item><see cref="System.Type.GetConstructor(System.Reflection.BindingFlags, System.Reflection.Binder?, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[]?)"/></item>
System.Configuration.ConfigurationManager (1)
System\Configuration\TypeUtil.cs (1)
148ConstructorInfo ctor = type.GetConstructor(BindingFlags, null, CallingConventions.HasThis, Type.EmptyTypes,
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
64return typeImpl.GetConstructor(bindingAttr, binder, callConvention, types, modifiers);
src\libraries\System.Private.CoreLib\src\System\Type.cs (1)
184public ConstructorInfo? GetConstructor(BindingFlags bindingAttr, Binder? binder, Type[] types, ParameterModifier[]? modifiers) => GetConstructor(bindingAttr, binder, CallingConventions.Any, types, modifiers);
src\System\Reflection\Emit\RuntimeEnumBuilder.cs (1)
95return m_typeBuilder.GetConstructor(bindingAttr, binder, callConvention,
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (1)
668return m_bakedRuntimeType.GetConstructor(bindingAttr, binder, callConvention, types, modifiers);
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
305return _typeInfo.GetConstructor(bindingAttr, binder, callConvention, types, modifiers);