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