ConstructorBuilder::Invoke Method (BindingFlags, Binder^, array<Object^>^, CultureInfo^)

 

Invokes the constructor dynamically reflected by this instance on the given object, passing along the specified parameters, and under the constraints of the given binder.

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

public:
virtual Object^ Invoke(
	BindingFlags invokeAttr,
	Binder^ binder,
	array<Object^>^ parameters,
	CultureInfo^ culture
) override

Parameters

invokeAttr
Type: System.Reflection::BindingFlags

This must be a bit flag from BindingFlags, such as InvokeMethod, NonPublic, and so on.

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. See Binder.

parameters
Type: array<System::Object^>^

An argument list. This is an array of arguments with the same number, order, and type as the parameters of the constructor to be invoked. If there are no parameters this should be null.

culture
Type: System.Globalization::CultureInfo^

An instance of CultureInfo used to govern the coercion of types. If this is null, the CultureInfo for the current thread is used. (For example, this is necessary to convert a String that represents 1000 to a Double value, since 1000 is represented differently by different cultures.)

Return Value

Type: System::Object^

Returns an Object that is the return value of the invoked constructor.

Exception Condition
NotSupportedException

This method is not currently supported. You can retrieve the constructor using GetConstructor and call Invoke on the returned ConstructorInfo.

If the constructor has no parameters, the value of the parameters parameter should be null. Otherwise, the number, type, and order of elements in the parameters array should be identical to the number, type, and order of parameters for the constructor reflected by this instance.

For example, if the constructor reflected by this instance is declared as public class taking two strings, then the parameters parameter should be an array of Object with length 2.

System_CAPS_noteNote

Access restrictions are ignored for fully-trusted code. That is, private constructors, methods, fields, and properties can be accessed and invoked using Reflection whenever the code is fully trusted.

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