TypeDelegator::GetConstructorImpl Method (BindingFlags, Binder^, CallingConventions, array<Type^>^, array<ParameterModifier>^)

 

Gets the constructor that implemented the TypeDelegator.

Namespace:   System.Reflection
Assembly:  mscorlib (in mscorlib.dll)

protected:
virtual ConstructorInfo^ GetConstructorImpl(
	BindingFlags bindingAttr,
	Binder^ binder,
	CallingConventions callConvention,
	array<Type^>^ types,
	array<ParameterModifier>^ modifiers
) override

Parameters

bindingAttr
Type: System.Reflection::BindingFlags

A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from BindingFlags.

binder
Type: System.Reflection::Binder^

An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects using reflection. If binder is null, the default binder is used.

callConvention
Type: System.Reflection::CallingConventions

The calling conventions.

types
Type: array<System::Type^>^

An array of type Type containing a list of the parameter number, order, and types. Types cannot be null; use an appropriate GetMethod method or an empty array to search for a method without parameters.

modifiers
Type: array<System.Reflection::ParameterModifier>^

An array of type ParameterModifier having the same length as the types array, whose elements represent the attributes associated with the parameters of the method to get.

Return Value

Type: System.Reflection::ConstructorInfo^

A ConstructorInfo object for the method that matches the specified criteria, or null if a match cannot be found.

The callConvention parameter indicates the calling convention for the entry point. If no calling convention is specified, a default CallingConventions value of Standard is used.

.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show: