Assembly.GetModule(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.
Gets the specified module in this assembly.
public:
virtual System::Reflection::Module ^ GetModule(System::String ^ name);
public virtual System.Reflection.Module? GetModule (string name);
public virtual System.Reflection.Module GetModule (string name);
public System.Reflection.Module GetModule (string name);
abstract member GetModule : string -> System.Reflection.Module
override this.GetModule : string -> System.Reflection.Module
Public Overridable Function GetModule (name As String) As Module
Public Function GetModule (name As String) As Module
Parameters
- name
- String
The name of the module being requested.
Returns
The module being requested, or null
if the module is not found.
Implements
Exceptions
The name
parameter is null
.
The name
parameter is an empty string ("").
A file that was found could not be loaded.
name
was not found.
name
is not a valid assembly.
Remarks
This method works on file names.
Classes in the Reflection.Emit
namespace emit the scope name for a dynamic module. The scope name can be determined by the Module.ScopeName property. Pass the kind of module you want to Assembly.GetModule
. For example, if you want the module that contains the assembly manifest, pass the scope name of the module to GetModule
. Otherwise, pass the file name of the module. Assemblies loaded by one of the Load
methods that have a byte[] parameter have only one module, and that is the manifest module. Always seek these modules using the scope name.
A type can be retrieved from a specific module using Module.GetType. Calling Module.GetType
on the module containing the manifest will not initiate a search of the entire assembly. To retrieve a type from an assembly, regardless of which module it is in, you must call Assembly.GetType.