Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Assembly::LoadModule Method (String^, array<Byte>^)

 

Loads the module, internal to this assembly, with a common object file format (COFF)-based image containing an emitted module, or a resource file.

Namespace:   System.Reflection
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.

Return Value

Type: System.Reflection::Module^

The loaded module.

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
Return to top
Show:
© 2017 Microsoft