Activator::CreateInstance Method (Type, BindingFlags, Binder, array<Object>, CultureInfo, array<Object>)
Creates an instance of the specified type using the constructor that best matches the specified parameters.
Assembly: mscorlib (in mscorlib.dll)
public: static Object^ CreateInstance( Type^ type, BindingFlags bindingAttr, Binder^ binder, array<Object^>^ args, CultureInfo^ culture, array<Object^>^ activationAttributes )
Parameters
- type
- Type: System::Type
The type of object to create.
- bindingAttr
- Type: System.Reflection::BindingFlags
A combination of zero or more bit flags that affect the search for the type constructor. If bindingAttr is zero, a case-sensitive search for public constructors is conducted.
- binder
- Type: System.Reflection::Binder
An object that uses bindingAttr and args to seek and identify the type constructor. If binder is nullptr, the default binder is used.
- args
- Type: array<System::Object>
An array of arguments that match in number, order, and type the parameters of the constructor to invoke. If args is an empty array or nullptr, the constructor that takes no parameters (the default constructor) is invoked.
- culture
- Type: System.Globalization::CultureInfo
Culture-specific information that governs the coercion of args to the formal types declared for the type constructor. If culture is nullptr, the CultureInfo for the current thread is used.
- activationAttributes
- Type: array<System::Object>
An array of one or more attributes that can participate in activation. This is typically an array that contains a single UrlAttribute object. The UrlAttribute specifies the URL that is required to activate a remote object.
| Exception | Condition |
|---|---|
| ArgumentNullException | type is nullptr. |
| ArgumentException | type is not a RuntimeType. -or- type is an open generic type (that is, the ContainsGenericParameters property returns true). |
| NotSupportedException | type cannot be a TypeBuilder. -or- Creation of TypedReference, ArgIterator, Void, and RuntimeArgumentHandle types, or arrays of those types, is not supported. -or- activationAttributes is not an empty array, and the type being created does not derive from MarshalByRefObject. -or- The assembly that contains type is a dynamic assembly that was created with AssemblyBuilderAccess::Save. -or- The constructor that best matches args has varargs arguments. |
| TargetInvocationException | The constructor being called throws an exception. |
| MethodAccessException | The caller does not have permission to call this constructor. |
| MemberAccessException | Cannot create an instance of an abstract class, or this member was invoked with a late-binding mechanism. |
| InvalidComObjectException | The COM type was not obtained through GetTypeFromProgID or GetTypeFromCLSID. |
| MissingMethodException | No matching constructor was found. |
| COMException | type is a COM object but the class identifier used to obtain the type is invalid, or the identified class is not registered. |
| TypeLoadException | type is not a valid type. |
The constructor to be invoked must provide the most specific match with the specified argument list under the constraints of the specified binder and binding attributes.
The activationAttributes parameter is related to client-activated objects; see Client Activation.
Note |
|---|
Starting with the .NET Framework version 2.0 Service Pack 1, this method can be used to access nonpublic types and members if the caller has been granted ReflectionPermission with the ReflectionPermissionFlag::RestrictedMemberAccess flag and if the grant set of the nonpublic types and members is restricted to the caller’s grant set or to a subset thereof. (See Security Considerations for Reflection.) To use this functionality, your application should target the .NET Framework version 3.5 or later. |
- SecurityPermission
for the ability to call unmanaged code when creating an instance of a delegate. Associated enumeration: SecurityPermissionFlag::UnmanagedCode
- SecurityPermission
for supplying evidence. Associated enumeration: SecurityPermissionFlag::ControlEvidence
- ReflectionPermission
for accessing nonpublic types and members when the grant set of the nonpublic types and members is restricted to the caller's grant set or to a subset thereof. Associated enumeration: ReflectionPermissionFlag::RestrictedMemberAccess
- ReflectionPermission
for accessing nonpublic types and members regardless of their grant set. Associated enumeration: ReflectionPermissionFlag::MemberAccess
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note