NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Assembly.GetLoadedModules

Gets all the loaded modules that are part of this assembly.

[Visual Basic]
Public Function GetLoadedModules() As Module ()
[C#]
public Module[] GetLoadedModules();
[C++]
public: Module* GetLoadedModules() [];
[JScript]
public function GetLoadedModules() : Module[];

Return Value

An array of modules.

Remarks

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.

See Also

Assembly Class | Assembly Members | System.Reflection Namespace