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