Activator::CreateInstanceFrom Method (AppDomain, String, String, Boolean, BindingFlags, Binder, array<Object>, CultureInfo, array<Object>, Evidence)
Note: This API is now obsolete. The non-obsolete alternative is CreateInstanceFrom(AppDomain, String, String, Boolean, BindingFlags, Binder, array<Object>, CultureInfo, array<Object>).
Creates an instance of the type whose name is specified in the specified remote domain, using the named assembly file and the constructor that best matches the specified parameters.
Assembly: mscorlib (in mscorlib.dll)
[ObsoleteAttribute(L"Methods which use Evidence to sandbox are obsolete and will be removed in a future release of the .NET Framework. Please use an overload of CreateInstanceFrom which does not take an Evidence parameter. See http://go.microsoft.com/fwlink/?LinkID=155570 for more information.")] public: static ObjectHandle^ CreateInstanceFrom( AppDomain^ domain, String^ assemblyFile, String^ typeName, bool ignoreCase, BindingFlags bindingAttr, Binder^ binder, array<Object^>^ args, CultureInfo^ culture, array<Object^>^ activationAttributes, Evidence^ securityAttributes )
Parameters
- domain
- Type: System::AppDomain
The remote domain where the type named typeName is created.
- assemblyFile
- Type: System::String
The name of a file that contains an assembly where the type named typeName is sought.
- typeName
- Type: System::String
The name of the preferred type.
- ignoreCase
- Type: System::Boolean
true to specify that the search for typeName is not case-sensitive; false to specify that the search is case-sensitive.
- bindingAttr
- Type: System.Reflection::BindingFlags
A combination of zero or more bit flags that affect the search for the typeName 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 typeName 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 typeName 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.
- securityAttributes
- Type: System.Security.Policy::Evidence
Information used to make security policy decisions and grant code permissions.
Return Value
Type: System.Runtime.Remoting::ObjectHandleA handle that must be unwrapped to access the newly created instance.
| Exception | Condition |
|---|---|
| ArgumentNullException | domain or typeName is nullptr. |
| MissingMethodException | No matching constructor was found. |
| TypeLoadException | typename was not found in assemblyFile. |
| FileNotFoundException | assemblyFile was not found. |
| 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. |
| TargetInvocationException | The constructor, which was invoked through reflection, threw an exception. |
| SecurityException | The caller does have the required FileIOPermission. |
| NotSupportedException | activationAttributes is not an empty array, and the type being created does not derive from MarshalByRefObject. |
| BadImageFormatException | assemblyFile is not a valid assembly. -or- The common language runtime (CLR) version 2.0 or later is currently loaded, and assemblyName was compiled for a version of the CLR that is later than the currently loaded version. Note that the .NET Framework versions 2.0, 3.0, and 3.5 all use CLR version 2.0. |
Use CreateInstanceFrom when a host needs to execute code in an application domain that has restricted security permissions.
Use the ObjectHandle::Unwrap method to unwrap the return value.
The activationAttributes parameter is related to client-activated objects; see Client Activation.
Note |
|---|
This method uses SecurityAction::LinkDemand to require the immediate caller to have full trust. For important limitations on using the LinkDemand member, see Demand vs. LinkDemand. |
For information about other exceptions that can be thrown by invoked methods, see the Exceptions section of the Assembly::LoadFrom and CreateInstance methods.
- 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
- FileIOPermission
for the ability to search directory paths and read their contents. Associated enumerations: FileIOPermissionAccess::PathDiscovery and FileIOPermissionAccess::Read
- 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
- SecurityCriticalAttribute
requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.
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