8 references to IsGlobal
System.Private.CoreLib (8)
src\System\Reflection\RuntimeConstructorInfo.CoreCLR.cs (2)
164public override Type? DeclaringType => m_reflectedTypeCache.IsGlobal ? null : m_declaringType; 168public override Type? ReflectedType => m_reflectedTypeCache.IsGlobal ? null : ReflectedTypeInternal;
src\System\Reflection\RuntimeEventInfo.cs (1)
32Debug.Assert(!reflectedTypeCache.IsGlobal);
src\System\Reflection\RuntimeFieldInfo.cs (2)
41public override Type? ReflectedType => m_reflectedTypeCache.IsGlobal ? null : ReflectedTypeInternal; 43public override Type? DeclaringType => m_reflectedTypeCache.IsGlobal ? null : m_declaringType;
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (2)
210if (m_reflectedTypeCache.IsGlobal) 223if (m_reflectedTypeCache.IsGlobal)
src\System\Reflection\RuntimePropertyInfo.cs (1)
36Debug.Assert(!reflectedTypeCache.IsGlobal);