Base:
property
BaseType
System.Type.BaseType
11 references to BaseType
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\Marshal.cs (2)
1109
if (rt.
BaseType
!= typeof(MulticastDelegate) && rt != typeof(MulticastDelegate))
1130
if (rt.
BaseType
!= typeof(MulticastDelegate) && rt != typeof(MulticastDelegate))
src\System\Reflection\Associates.cs (1)
133
reflectedType = (RuntimeType)reflectedType.
BaseType
!;
src\System\Reflection\RuntimeCustomAttributeData.cs (5)
1132
type = (type.
BaseType
as RuntimeType)!;
1139
type = (type.
BaseType
as RuntimeType)!;
1277
type = (type.
BaseType
as RuntimeType)!;
1716
for (RuntimeType? type = attributeType; type != null; type = (RuntimeType?)type.
BaseType
)
1968
Debug.Assert(pca.
BaseType
== typeof(Attribute), "Pseudo CA Error - Incorrect base type");
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (2)
111
RuntimeType? parent = (RuntimeType?)m_declaringType.
BaseType
;
344
declaringType = (RuntimeType)declaringType.
BaseType
!;
src\System\RuntimeType.CoreCLR.cs (1)
821
interfaces = ReflectedType.
BaseType
!.GetInterfaces();