AssemblyBuilder.GetDynamicModule(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the dynamic module with the specified name.
public:
System::Reflection::Emit::ModuleBuilder ^ GetDynamicModule(System::String ^ name);
public System.Reflection.Emit.ModuleBuilder? GetDynamicModule (string name);
public System.Reflection.Emit.ModuleBuilder GetDynamicModule (string name);
member this.GetDynamicModule : string -> System.Reflection.Emit.ModuleBuilder
Public Function GetDynamicModule (name As String) As ModuleBuilder
Parameters
- name
- String
The name of the requested dynamic module.
Returns
A ModuleBuilder object representing the requested dynamic module.
Exceptions
name
is null
.
The length of name
is zero.
The caller does not have the required permission.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.