_AppDomain.CreateInstance Method (String, String, Object[])
Provides COM objects with version-independent access to the AppDomain.CreateInstance(String, String, Object[]) method overload.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
ObjectHandle CreateInstance( string assemblyName, string typeName, Object[] activationAttributes )
Parameters
- assemblyName
- Type: System.String
The display name of the assembly. See Assembly.FullName.
- typeName
- Type: System.String
The fully qualified name of the requested type, including the namespace but not the assembly, as returned by the Type.FullName property.
- activationAttributes
- Type: System.Object[]
An array of one or more attributes that can participate in activation. Typically, an array that contains a single UrlAttribute object. The UrlAttribute specifies the URL that is required to activate a remote object.
Return Value
Type: System.Runtime.Remoting.ObjectHandleAn object that is a wrapper for the new instance specified by typeName. The return value needs to be unwrapped to access the real object.
See the AppDomain.CreateInstance(String, String, Object[]) method overload.
The activationAttributes parameter is related to client-activated objects; see Client Activation.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.