12 references to GetRuntimeAssembly
mscorlib (12)
system\exception.cs (1)
415_source = rtModule.GetRuntimeAssembly().GetSimpleName();
system\reflection\ConstructorInfo.cs (1)
474internal RuntimeAssembly GetRuntimeAssembly() { return GetRuntimeModule().GetRuntimeAssembly(); }
system\reflection\customattribute.cs (4)
1502bool disallowCriticalCustomAttributes = property.GetRuntimeModule().GetRuntimeAssembly().IsAllSecurityTransparent(); 1521bool disallowCriticalCustomAttributes = e.GetRuntimeModule().GetRuntimeAssembly().IsAllSecurityTransparent(); 1576bool isModuleSecurityTransparent = module.GetRuntimeAssembly().IsAllSecurityTransparent(); 1681frame.Push(decoratedModule.GetRuntimeAssembly());
system\reflection\emit\methodrental.cs (1)
98RuntimeAssembly rtAssembly = internalMB.GetRuntimeAssembly();
system\reflection\methodinfo.cs (1)
562internal RuntimeAssembly GetRuntimeAssembly() { return GetRuntimeModule().GetRuntimeAssembly(); }
system\reflection\module.cs (2)
1061UnitySerializationHolder.GetUnitySerializationInfo(info, UnitySerializationHolder.ModuleUnity, this.ScopeName, this.GetRuntimeAssembly()); 1217return GetRuntimeAssembly();
system\runtime\remoting\soap.cs (2)
489actualTypeName += ", " + rtModule.GetRuntimeAssembly().GetSimpleName(); 533typeName = mb.DeclaringType.FullName + ", " + rtModule.GetRuntimeAssembly().GetSimpleName();