2 overrides of GetRuntimeModule
System.Private.CoreLib (2)
src\System\Reflection\MdFieldInfo.cs (1)
45internal override RuntimeModule GetRuntimeModule() { return m_declaringType.GetRuntimeModule(); }
src\System\Reflection\RtFieldInfo.cs (1)
64internal override RuntimeModule GetRuntimeModule()
6 references to GetRuntimeModule
System.Private.CoreLib (6)
src\System\Reflection\RuntimeCustomAttributeData.cs (5)
32IList<CustomAttributeData> cad = GetCustomAttributes(target.GetRuntimeModule(), target.MetadataToken); 1210return IsCustomAttributeDefined(field.GetRuntimeModule(), field.MetadataToken, caType); 1367object[] attributes = GetCustomAttributes(field.GetRuntimeModule(), field.MetadataToken, pcas.Count, caType); 2237return GetMarshalAsCustomAttribute(field.MetadataToken, field.GetRuntimeModule()); 2254RuntimeModule module = field.GetRuntimeModule();
src\System\Reflection\RuntimeFieldInfo.cs (1)
47public override Module Module => GetRuntimeModule();