Base:
property
BaseType
System.Type.BaseType
16 references to BaseType
mscorlib (16)
system\reflection\Associates.cs (1)
143
reflectedType = (RuntimeType)reflectedType.
BaseType
;
system\reflection\customattribute.cs (4)
1203
type = type.
BaseType
as RuntimeType;
1210
type = type.
BaseType
as RuntimeType;
1368
type = type.
BaseType
as RuntimeType;
2163
Contract.Assert(pca.
BaseType
== (RuntimeType)typeof(Attribute), "Pseudo CA Error");
system\reflection\methodinfo.cs (2)
392
RuntimeType parent = (RuntimeType)m_declaringType.
BaseType
;
846
declaringType = (RuntimeType)declaringType.
BaseType
;
system\resources\resourcereader.cs (1)
1140
if (resourceType.
BaseType
== typeof(Enum)) {
system\rttype.cs (1)
877
Type[] interfaces = ReflectedType.
BaseType
.GetInterfaces();
system\runtime\remoting\objref.cs (4)
185
RuntimeType currType = (RuntimeType)typeOfObj.
BaseType
;
192
currType = (RuntimeType)currType.
BaseType
;
203
currType = (RuntimeType)typeOfObj.
BaseType
;
207
currType = (RuntimeType)currType.
BaseType
;
system\runtime\serialization\formatterservices.cs (2)
107
parentType = (RuntimeType)(type.
BaseType
);
149
for (RuntimeType t1 = parentType; t1 != objectType; t1 = (RuntimeType)t1.
BaseType
)
system\runtime\serialization\safeserializationmanager.cs (1)
403
currentType = currentType.
BaseType
as RuntimeType;