Implemented interface member:
method
GetConstructor
System.Runtime.InteropServices._Type.GetConstructor(System.Reflection.BindingFlags, System.Reflection.Binder, System.Reflection.CallingConventions, System.Type[], System.Reflection.ParameterModifier[])
8 references to GetConstructor
mscorlib (4)
system\reflection\emit\enumbuilder.cs (1)
139return m_typeBuilder.GetConstructor(bindingAttr, binder, callConvention,
system\reflection\emit\typebuilder.cs (1)
1132return m_bakedRuntimeType.GetConstructor(bindingAttr, binder, callConvention, types, modifiers);
system\reflection\typedelegator.cs (1)
91return typeImpl.GetConstructor(bindingAttr,binder,callConvention,types,modifiers);
system\rttype.cs (1)
1769m_serializationCtor = m_runtimeType.GetConstructor(
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1079protected override ConstructorInfo GetConstructorImpl(BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) { return _baseReflectionType.GetConstructor(bindingAttr, binder, callConvention, types, modifiers); }
System.Configuration (1)
System\Configuration\TypeUtil.cs (1)
212ConstructorInfo ctor = type.GetConstructor(bindingFlags, null, CallingConventions.HasThis, Type.EmptyTypes, null);
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\MetadataStore.cs (1)
1079protected override ConstructorInfo GetConstructorImpl(BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type[] types, ParameterModifier[] modifiers) { return _baseReflectionType.GetConstructor(bindingAttr, binder, callConvention, types, modifiers); }
System.Web (1)
Compilation\DelayLoadType.cs (1)
85return Type.GetConstructor(bindingAttr, binder, callConvention, types, modifiers);