46 references to BaseType
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfXamlType.cs (1)
216type = type.BaseType;
System.Xaml (44)
System\Windows\Markup\XamlSetMarkupExtensionEventArgs.cs (1)
37XamlType baseType = CurrentType.BaseType;
System\Windows\Markup\XamlSetTypeConverterEventArgs.cs (1)
42XamlType baseType = CurrentType.BaseType;
System\Xaml\XamlObjectReader.cs (2)
3252XamlType baseType = member.DeclaringType.BaseType; 3275baseType = baseMember.DeclaringType.BaseType;
System\Xaml\XamlType.cs (40)
463curType = curType.BaseType; 718if (BaseType is not null) 720return BaseType.GetAliasedProperty(directive); 768return (BaseType is not null) ? BaseType.GetCollectionKind() : XamlCollectionKind.None; 812if (BaseType is not null) 814return BaseType.ContentProperty; 837if (BaseType is not null) 839IList<XamlType> baseWrappers = BaseType.ContentWrappers; 870if (BaseType is not null) 872return BaseType.DeferringLoader; 963if (BaseType is not null) 965return BaseType.IsWhitespaceSignificantCollection; 988else if (UnderlyingType is null && BaseType is not null) 990return BaseType.KeyType; 1019else if (BaseType is not null) 1021return BaseType.ItemType; 1040if (BaseType is not null) 1042return BaseType.MarkupExtensionReturnType; 1052return BaseType?.GetAllAttachableMembers(); 1063return BaseType?.GetAllMembers(); 1100if (BaseType is not null) 1102return skipReadOnlyCheck ? BaseType.LookupMember(name, true) : BaseType.GetMember(name); 1137return BaseType?.GetAttachableMember(name); 1216if (BaseType is not null) 1218return BaseType.IsAmbient; 1242if (BaseType is not null) 1244XamlValueConverter<TypeConverter> result = BaseType.TypeConverter; 1289if (BaseType is not null) 1291XamlValueConverter<ValueSerializer> result = BaseType.ValueSerializer; 1332if (BaseType is not null) 1334return BaseType.TrimSurroundingWhitespace; 1352if (BaseType is not null) 1354return BaseType.IsUsableDuringInitialization; 1377if (BaseType is not null) 1379return BaseType.SetMarkupExtensionHandler; 1402if (BaseType is not null) 1404return BaseType.SetTypeConverterHandler; 1824XamlType baseType = BaseType;
System.Xaml.Tests (1)
System\Xaml\XamlTypeTests.cs (1)
1736Assert.Equal(expected, type.BaseType);