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