Assembly.LoadModule Method (String, Byte[])
.NET Framework (current version)
![]() |
---|
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience. |
Loads the module, internal to this assembly, with a common object file format (COFF)-based image containing an emitted module, or a resource file.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- moduleName
-
Type:
System.String
The name of the module. This string must correspond to a file name in this assembly's manifest.
- rawModule
-
Type:
System.Byte[]
A byte array that is a COFF-based image containing an emitted module, or a resource.
Implements
_Assembly.LoadModule(String, Byte[])Exception | Condition |
---|---|
ArgumentNullException | moduleName or rawModule is null. |
ArgumentException | moduleName does not match a file entry in this assembly's manifest. |
BadImageFormatException | rawModule is not a valid module. |
FileLoadException | A file that was found could not be loaded. |
SecurityPermission
to provide evidence. Associated enumeration: SecurityPermissionFlag.ControlEvidence
.NET Framework
Available since 1.1
Available since 1.1
Show: