AppDomain::DefineDynamicAssembly Method (AssemblyName, AssemblyBuilderAccess, String, PermissionSet, PermissionSet, PermissionSet)
Note: This API is now obsolete. The non-obsolete alternative is DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, String).
Defines a dynamic assembly using the specified name, access mode, storage directory, and permission requests.
Assembly: mscorlib (in mscorlib.dll)
[ObsoleteAttribute(L"Assembly level declarative security is obsolete and is no longer enforced by the CLR by default. See http://go.microsoft.com/fwlink/?LinkID=155570 for more information.")] public: virtual AssemblyBuilder^ DefineDynamicAssembly( AssemblyName^ name, AssemblyBuilderAccess access, String^ dir, PermissionSet^ requiredPermissions, PermissionSet^ optionalPermissions, PermissionSet^ refusedPermissions ) sealed
Parameters
- name
- Type: System.Reflection::AssemblyName
The unique identity of the dynamic assembly.
- access
- Type: System.Reflection.Emit::AssemblyBuilderAccess
The mode in which the dynamic assembly will be accessed.
- dir
- Type: System::String
The name of the directory where the assembly will be saved. If dir is nullptr, the directory defaults to the current directory.
- requiredPermissions
- Type: System.Security::PermissionSet
The required permissions request.
- optionalPermissions
- Type: System.Security::PermissionSet
The optional permissions request.
- refusedPermissions
- Type: System.Security::PermissionSet
The refused permissions request.
Return Value
Type: System.Reflection.Emit::AssemblyBuilderA dynamic assembly with the specified name and features.
Implements
_AppDomain::DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, String, PermissionSet, PermissionSet, PermissionSet)| Exception | Condition |
|---|---|
| ArgumentNullException | name is nullptr. |
| ArgumentException | The Name property of name is nullptr. -or- The Name property of name begins with white space, or contains a forward or backward slash. |
| AppDomainUnloadedException | The operation is attempted on an unloaded application domain. |
The permission requests specified for requiredPermissions, optionalPermissions, and refusedPermissions are not used unless the dynamic assembly has been saved and reloaded into memory. To specify permission requests for a transient assembly that is never saved to disk, use an overload of the DefineDynamicAssembly method that specifies evidence as well as requested permissions, and supply an Evidence object.
Note |
|---|
During the development of code that emits dynamic assemblies, it is recommended that you use an overload of the DefineDynamicAssembly method that specifies evidence and permissions, supply the evidence you want the dynamic assembly to have, and include SecurityPermissionFlag::SkipVerification in refusedPermissions. Including SkipVerification in the refusedPermissions parameter ensures that the MSIL is verified. A limitation of this technique is that it also causes SecurityException to be thrown when used with code that demands full trust. |
This method should only be used to define a dynamic assembly in the current application domain. For more information, see the Load(AssemblyName) method overload.
Note |
|---|
In the .NET Framework versions 1.0, 1.1, and 2.0, the declarative security attributes applied to a dynamic assembly by using the requiredPermissions, optionalPermissions, and refusedPermissions parameters are stored in the old XML metadata format. See Emitting Declarative Security Attributes. |
The following sample demonstrates the DefineDynamicAssembly method and AssemblyResolve event.
For this code example to run, you must provide the fully qualified assembly name. For information about how to obtain the fully qualified assembly name, see Assembly Names.
using namespace System; using namespace System::Reflection; using namespace System::Reflection::Emit; ref class Test { public: static void InstantiateMyDynamicType( AppDomain^ domain ) { try { // You must supply a valid fully qualified assembly name here. domain->CreateInstance( "Assembly text name, Version, Culture, PublicKeyToken", "MyDynamicType" ); } catch ( Exception^ e ) { Console::WriteLine( e->Message ); } } static Assembly^ MyResolveEventHandler( Object^ sender, ResolveEventArgs^ args ) { return DefineDynamicAssembly( dynamic_cast<AppDomain^>(sender) ); } static Assembly^ DefineDynamicAssembly( AppDomain^ domain ) { // Build a dynamic assembly using Reflection Emit API. AssemblyName^ assemblyName = gcnew AssemblyName; assemblyName->Name = "MyDynamicAssembly"; AssemblyBuilder^ assemblyBuilder = domain->DefineDynamicAssembly( assemblyName, AssemblyBuilderAccess::Run ); ModuleBuilder^ moduleBuilder = assemblyBuilder->DefineDynamicModule( "MyDynamicModule" ); TypeBuilder^ typeBuilder = moduleBuilder->DefineType( "MyDynamicType", TypeAttributes::Public ); ConstructorBuilder^ constructorBuilder = typeBuilder->DefineConstructor( MethodAttributes::Public, CallingConventions::Standard, nullptr ); ILGenerator^ ilGenerator = constructorBuilder->GetILGenerator(); ilGenerator->EmitWriteLine( "MyDynamicType instantiated!" ); ilGenerator->Emit( OpCodes::Ret ); typeBuilder->CreateType(); return assemblyBuilder; } }; int main() { AppDomain^ currentDomain = AppDomain::CurrentDomain; Test::InstantiateMyDynamicType( currentDomain ); // Failed! currentDomain->AssemblyResolve += gcnew ResolveEventHandler( Test::MyResolveEventHandler ); Test::InstantiateMyDynamicType( currentDomain ); // OK! }
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