11 references to GetRuntimeModule
mscorlib (11)
system\reflection\customattribute.cs (5)
119IList<CustomAttributeData> cad = GetCustomAttributes(target.GetRuntimeModule(), target.MetadataToken); 1225if (IsCustomAttributeDefined(method.GetRuntimeModule(), method.MetadataToken, caType)) 1235if (IsCustomAttributeDefined(method.GetRuntimeModule(), method.MetadataToken, caType, 0, inherit)) 1449object[] attributes = GetCustomAttributes(method.GetRuntimeModule(), method.MetadataToken, pcaCount, caType, !AllowCriticalCustomAttributes(method)); 1464object[] attributes = GetCustomAttributes(method.GetRuntimeModule(), method.MetadataToken, 0, caType, mustBeInheritable, result, !AllowCriticalCustomAttributes(method));
system\reflection\methodinfo.cs (3)
157!CustomAttribute.IsAttributeDefined(GetRuntimeModule(), MetadataToken, ctorToken)) 559public override Module Module { get { return GetRuntimeModule(); } } 562internal RuntimeAssembly GetRuntimeAssembly() { return GetRuntimeModule().GetRuntimeAssembly(); }
system\reflection\parameterinfo.cs (1)
699return method.GetRuntimeModule();
system\runtime\remoting\soap.cs (2)
481rtModule = rmi.GetRuntimeModule(); 527rtModule = rmi.GetRuntimeModule();