AppDomain.CreateInstanceAndUnwrap Method (String, String, Object[])
Creates a new instance of the specified type. Parameters specify the assembly where the type is defined, the name of the type, and an array of activation attributes.
Assembly: mscorlib (in mscorlib.dll)
public Object CreateInstanceAndUnwrap( 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.
| Exception | Condition |
|---|---|
| ArgumentNullException | assemblyName or typeName is null. |
| MissingMethodException | No matching public constructor was found. |
| TypeLoadException | typename was not found in assemblyName. |
| FileNotFoundException | assemblyName was not found. |
| MethodAccessException | The caller does not have permission to call this constructor. |
| NotSupportedException | The caller cannot provide activation attributes for an object that does not inherit from MarshalByRefObject. |
| AppDomainUnloadedException | The operation is attempted on an unloaded application domain. |
| BadImageFormatException | assemblyName is not a valid assembly. -or- Version 2.0 or later of the common language runtime is currently loaded and assemblyName was compiled with a later version. |
| FileLoadException | An assembly or module was loaded twice with two different evidences. |
This is a convenience method that combines CreateInstance and ObjectHandle.Unwrap. This method calls the default constructor for typeName.
See AssemblyName for the format of assemblyName. See the Type.FullName property for the format of typeName.
The activationAttributes parameter is related to client-activated objects; see Client Activation.
Note: |
|---|
If you make an early-bound call to a method M of an object of type T1 that was returned by CreateInstanceAndUnwrap, and that method makes an early-bound call to a method of an object of type T2 in an assembly C other than the current assembly or the assembly containing T1, assembly C is loaded into the current application domain. This loading occurs even if the early-bound call to T1.M() was made in the body of a DynamicMethod, or in other dynamically generated code. If the current domain is the default domain, assembly C cannot be unloaded until the process ends. If the current domain later attempts to load assembly C, the load might fail. |
using System; using System.IO; using System.Threading; using System.Reflection; using System.Reflection.Emit; using System.Runtime.Remoting; class ADDyno { public static Type CreateADynamicAssembly(ref AppDomain myNewDomain, string executableNameNoExe) { string executableName = executableNameNoExe + ".exe"; AssemblyName myAsmName = new AssemblyName(); myAsmName.Name = executableNameNoExe; myAsmName.CodeBase = Environment.CurrentDirectory; AssemblyBuilder myAsmBuilder = myNewDomain.DefineDynamicAssembly(myAsmName, AssemblyBuilderAccess.RunAndSave); Console.WriteLine("-- Dynamic Assembly instantiated."); ModuleBuilder myModBuilder = myAsmBuilder.DefineDynamicModule(executableNameNoExe, executableName); TypeBuilder myTypeBuilder = myModBuilder.DefineType(executableNameNoExe, TypeAttributes.Public, typeof(MarshalByRefObject)); MethodBuilder myFCMethod = myTypeBuilder.DefineMethod("CountLocalFiles", MethodAttributes.Public | MethodAttributes.Static, null, new Type[] { }); MethodInfo currentDirGetMI = typeof(Environment).GetProperty("CurrentDirectory").GetGetMethod(); MethodInfo writeLine0objMI = typeof(Console).GetMethod("WriteLine", new Type[] { typeof(string) }); MethodInfo writeLine2objMI = typeof(Console).GetMethod("WriteLine", new Type[] { typeof(string), typeof(object), typeof(object) }); MethodInfo getFilesMI = typeof(Directory).GetMethod("GetFiles", new Type[] { typeof(string) }); myFCMethod.InitLocals = true; ILGenerator myFCIL = myFCMethod.GetILGenerator(); Console.WriteLine("-- Generating MSIL method body..."); LocalBuilder v0 = myFCIL.DeclareLocal(typeof(string)); LocalBuilder v1 = myFCIL.DeclareLocal(typeof(int)); LocalBuilder v2 = myFCIL.DeclareLocal(typeof(string)); LocalBuilder v3 = myFCIL.DeclareLocal(typeof(string[])); Label evalForEachLabel = myFCIL.DefineLabel(); Label topOfForEachLabel = myFCIL.DefineLabel(); // Build the method body. myFCIL.EmitCall(OpCodes.Call, currentDirGetMI, null); myFCIL.Emit(OpCodes.Stloc_S, v0); myFCIL.Emit(OpCodes.Ldc_I4_0); myFCIL.Emit(OpCodes.Stloc_S, v1); myFCIL.Emit(OpCodes.Ldstr, "---"); myFCIL.EmitCall(OpCodes.Call, writeLine0objMI, null); myFCIL.Emit(OpCodes.Ldloc_S, v0); myFCIL.EmitCall(OpCodes.Call, getFilesMI, null); myFCIL.Emit(OpCodes.Stloc_S, v3); myFCIL.Emit(OpCodes.Br_S, evalForEachLabel); // foreach loop starts here. myFCIL.MarkLabel(topOfForEachLabel); // Load array of strings and index, store value at index for output. myFCIL.Emit(OpCodes.Ldloc_S, v3); myFCIL.Emit(OpCodes.Ldloc_S, v1); myFCIL.Emit(OpCodes.Ldelem_Ref); myFCIL.Emit(OpCodes.Stloc_S, v2); myFCIL.Emit(OpCodes.Ldloc_S, v2); myFCIL.EmitCall(OpCodes.Call, writeLine0objMI, null); // Increment counter by one. myFCIL.Emit(OpCodes.Ldloc_S, v1); myFCIL.Emit(OpCodes.Ldc_I4_1); myFCIL.Emit(OpCodes.Add); myFCIL.Emit(OpCodes.Stloc_S, v1); // Determine if end of file list array has been reached. myFCIL.MarkLabel(evalForEachLabel); myFCIL.Emit(OpCodes.Ldloc_S, v1); myFCIL.Emit(OpCodes.Ldloc_S, v3); myFCIL.Emit(OpCodes.Ldlen); myFCIL.Emit(OpCodes.Conv_I4); myFCIL.Emit(OpCodes.Blt_S, topOfForEachLabel); //foreach loop end here. myFCIL.Emit(OpCodes.Ldstr, "---"); myFCIL.EmitCall(OpCodes.Call, writeLine0objMI, null); myFCIL.Emit(OpCodes.Ldstr, "There are {0} files in {1}."); myFCIL.Emit(OpCodes.Ldloc_S, v1); myFCIL.Emit(OpCodes.Box, typeof(int)); myFCIL.Emit(OpCodes.Ldloc_S, v0); myFCIL.EmitCall(OpCodes.Call, writeLine2objMI, null); myFCIL.Emit(OpCodes.Ret); Type myType = myTypeBuilder.CreateType(); myAsmBuilder.SetEntryPoint(myFCMethod); myAsmBuilder.Save(executableName); Console.WriteLine("-- Method generated, type completed, and assembly saved to disk."); return myType; } public static void Main() { string domainDir, executableName = null; Console.Write("Enter a name for the file counting assembly: "); string executableNameNoExe = Console.ReadLine(); executableName = executableNameNoExe + ".exe"; Console.WriteLine("---"); domainDir = Environment.CurrentDirectory; AppDomain curDomain = Thread.GetDomain(); // Create a new AppDomain, with the current directory as the base. Console.WriteLine("Current Directory: {0}", Environment.CurrentDirectory); AppDomainSetup mySetupInfo = new AppDomainSetup(); mySetupInfo.ApplicationBase = domainDir; mySetupInfo.ApplicationName = executableNameNoExe; mySetupInfo.LoaderOptimization = LoaderOptimization.SingleDomain; AppDomain myDomain = AppDomain.CreateDomain(executableNameNoExe, null, mySetupInfo); Console.WriteLine("Creating a new AppDomain '{0}'...", executableNameNoExe); Console.WriteLine("-- Base Directory = '{0}'", myDomain.BaseDirectory); Console.WriteLine("-- Shadow Copy? = '{0}'", myDomain.ShadowCopyFiles); Console.WriteLine("---"); Type myFCType = CreateADynamicAssembly(ref curDomain, executableNameNoExe); Console.WriteLine("Loading '{0}' from '{1}'...", executableName, myDomain.BaseDirectory.ToString()); BindingFlags bFlags = (BindingFlags.Public | BindingFlags.CreateInstance | BindingFlags.Instance); Object myObjInstance = myDomain.CreateInstanceAndUnwrap(executableNameNoExe, executableNameNoExe, false, bFlags, null, null, null, null, null); Console.WriteLine("Executing method 'CountLocalFiles' in {0}...", myObjInstance.ToString()); myFCType.InvokeMember("CountLocalFiles", BindingFlags.InvokeMethod, null, myObjInstance, new object[] { }); } }
- FileIOPermissionAccess
for the ability to access the location of the assembly. Associated enumeration: FileIOPermissionAccess.PathDiscovery
- FileIOPermissionAccess
for the ability to read the file containing the assembly manifest. Associated enumeration: FileIOPermissionAccess.Read
- WebPermission
for the ability to access the location of the assembly if the assembly is not local.
- SecurityPermission
for the ability to call unmanaged code when creating an instance of a delegate. Associated enumeration: SecurityPermissionFlag.UnmanagedCode
- ReflectionPermission
for the ability to invoke operations on all type members. Associated enumeration: ReflectionPermissionFlag.MemberAccess
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: