8 references to GetRuntimeModule
mscorlib (8)
system\reflection\customattribute.cs (4)
158return GetCustomAttributes(target.GetRuntimeModule(), target.MetadataToken); 1265return IsCustomAttributeDefined(property.GetRuntimeModule(), property.MetadataToken, caType); 1502bool disallowCriticalCustomAttributes = property.GetRuntimeModule().GetRuntimeAssembly().IsAllSecurityTransparent(); 1504object[] attributes = GetCustomAttributes(property.GetRuntimeModule(), property.MetadataToken, pcaCount, caType, disallowCriticalCustomAttributes);
system\reflection\parameterinfo.cs (1)
703return property.GetRuntimeModule();
system\reflection\propertyinfo.cs (3)
261GetRuntimeModule().MetadataImport.GetPropertyProps( 452public override Module Module { get { return GetRuntimeModule(); } } 473Object defaultValue = MdConstant.GetValue(GetRuntimeModule().MetadataImport, m_token, PropertyType.GetTypeHandleInternal(), raw);