_Assembly.GetModules 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.
Provides COM objects with version-independent access to the GetModules methods.
Overloads
GetModules() |
Provides COM objects with version-independent access to the GetModules() method. |
GetModules(Boolean) |
Provides COM objects with version-independent access to the GetModules(Boolean) method. |
Remarks
This method is for access to managed classes from unmanaged code, and should not be called from managed code.
The GetModules methods get all the modules that are part of this assembly.
GetModules()
Provides COM objects with version-independent access to the GetModules() method.
public:
cli::array <System::Reflection::Module ^> ^ GetModules();
public System.Reflection.Module[] GetModules ();
abstract member GetModules : unit -> System.Reflection.Module[]
Public Function GetModules () As Module()
Returns
An array of modules.
Remarks
This method is for access to managed classes from unmanaged code, and should not be called from managed code.
The GetModules method gets all the modules that are part of this assembly.
See also
Applies to
GetModules(Boolean)
Provides COM objects with version-independent access to the GetModules(Boolean) method.
public:
cli::array <System::Reflection::Module ^> ^ GetModules(bool getResourceModules);
public System.Reflection.Module[] GetModules (bool getResourceModules);
abstract member GetModules : bool -> System.Reflection.Module[]
Public Function GetModules (getResourceModules As Boolean) As Module()
Parameters
- getResourceModules
- Boolean
true
to include resource modules; otherwise, false
.
Returns
An array of modules.
Remarks
This method is for access to managed classes from unmanaged code, and should not be called from managed code.
The GetModules method gets all the modules that are part of this assembly, specifying whether to include resource modules.