Assembly::LoadModule Method (String^, array<Byte>^)
.NET Framework (current version)
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)
public: virtual Module^ LoadModule( String^ moduleName, array<unsigned char>^ rawModule ) sealed
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:
array<System::Byte>^
A byte array that is a COFF-based image containing an emitted module, or a resource.
| 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: