7 references to GetModule
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\RuntimeType.cs (1)
170internal RuntimeModule GetRuntimeModule() => RuntimeTypeHandle.GetModule(this);
src\System\Reflection\Associates.cs (1)
66RuntimeMethodHandleInternal associateMethodHandle = ModuleHandle.ResolveMethodHandleInternal(RuntimeTypeHandle.GetModule(declaredType), tkMethod, genericArgumentHandles, default);
src\System\Reflection\RtFieldInfo.cs (1)
66return RuntimeTypeHandle.GetModule(RuntimeFieldHandle.GetApproxDeclaringType(this));
src\System\Reflection\RuntimeConstructorInfo.CoreCLR.cs (1)
174internal RuntimeModule GetRuntimeModule() { return RuntimeTypeHandle.GetModule(m_declaringType); }
src\System\RuntimeHandles.cs (1)
408return new ModuleHandle(GetModule(m_type));
src\System\RuntimeType.CoreCLR.cs (2)
1091ModuleHandle moduleHandle = new ModuleHandle(RuntimeTypeHandle.GetModule(declaringType)); 1455m_isGlobal = RuntimeTypeHandle.GetModule(runtimeType).RuntimeType == runtimeType;