|
|
@@ -51,6 +51,12 @@ namespace System.Reflection {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ public override Module Module {
|
|
|
+ get {
|
|
|
+ return GetRuntimeModule ();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
internal RuntimeType GetDeclaringTypeInternal ()
|
|
|
{
|
|
|
return (RuntimeType) DeclaringType;
|
|
|
@@ -62,6 +68,11 @@ namespace System.Reflection {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ internal RuntimeModule GetRuntimeModule ()
|
|
|
+ {
|
|
|
+ return GetDeclaringTypeInternal ().GetRuntimeModule ();
|
|
|
+ }
|
|
|
+
|
|
|
#region ISerializable Implementation
|
|
|
public void GetObjectData(SerializationInfo info, StreamingContext context)
|
|
|
{
|