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.GetModule

Gets the specified module in this assembly.

[Visual Basic]
Public Function GetModule( _
   ByVal name As String _
) As Module
[C#]
public Module GetModule(
   string name
);
[C++]
public: Module* GetModule(
   String* name
);
[JScript]
public function GetModule(
   name : String
) : Module;

Parameters

name
The name of the module being requested.

Return Value

The Module being requested

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