MemberInfo.Module Property
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Gets the module in which the type that declares the member represented by the current MemberInfo is defined.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.Reflection.ModuleThe Module in which the type that declares the member represented by the current MemberInfo is defined.
| Exception | Condition |
|---|---|
| NotImplementedException | This method is not implemented. |
This property is provided as a convenience. It is equivalent to using the DeclaringType property to get the type in which the method is declared, and then calling the Module property of the resulting Type object.
Show: