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