46 references to BaseType
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfXamlType.cs (1)
215type = type.BaseType;
System.Xaml (44)
System\Windows\Markup\XamlSetMarkupExtensionEventArgs.cs (1)
36XamlType baseType = CurrentType.BaseType;
System\Windows\Markup\XamlSetTypeConverterEventArgs.cs (1)
41XamlType baseType = CurrentType.BaseType;
System\Xaml\XamlObjectReader.cs (2)
3251XamlType baseType = member.DeclaringType.BaseType; 3274baseType = baseMember.DeclaringType.BaseType;
System\Xaml\XamlType.cs (40)
462curType = curType.BaseType; 717if (BaseType is not null) 719return BaseType.GetAliasedProperty(directive); 767return (BaseType is not null) ? BaseType.GetCollectionKind() : XamlCollectionKind.None; 811if (BaseType is not null) 813return BaseType.ContentProperty; 836if (BaseType is not null) 838IList<XamlType> baseWrappers = BaseType.ContentWrappers; 869if (BaseType is not null) 871return BaseType.DeferringLoader; 962if (BaseType is not null) 964return BaseType.IsWhitespaceSignificantCollection; 987else if (UnderlyingType is null && BaseType is not null) 989return BaseType.KeyType; 1018else if (BaseType is not null) 1020return BaseType.ItemType; 1039if (BaseType is not null) 1041return BaseType.MarkupExtensionReturnType; 1051return BaseType?.GetAllAttachableMembers(); 1062return BaseType?.GetAllMembers(); 1099if (BaseType is not null) 1101return skipReadOnlyCheck ? BaseType.LookupMember(name, true) : BaseType.GetMember(name); 1136return BaseType?.GetAttachableMember(name); 1215if (BaseType is not null) 1217return BaseType.IsAmbient; 1241if (BaseType is not null) 1243XamlValueConverter<TypeConverter> result = BaseType.TypeConverter; 1288if (BaseType is not null) 1290XamlValueConverter<ValueSerializer> result = BaseType.ValueSerializer; 1331if (BaseType is not null) 1333return BaseType.TrimSurroundingWhitespace; 1351if (BaseType is not null) 1353return BaseType.IsUsableDuringInitialization; 1376if (BaseType is not null) 1378return BaseType.SetMarkupExtensionHandler; 1401if (BaseType is not null) 1403return BaseType.SetTypeConverterHandler; 1822XamlType baseType = BaseType;
System.Xaml.Tests (1)
System\Xaml\XamlTypeTests.cs (1)
1736Assert.Equal(expected, type.BaseType);