48 references to BaseType
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfXamlType.cs (1)
216
type = type.
BaseType
;
System.Xaml (47)
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)
3225
XamlType baseType = member.DeclaringType.
BaseType
;
3245
baseType = baseMember.DeclaringType.
BaseType
;
System\Xaml\XamlType.cs (43)
436
curType = curType.
BaseType
;
674
if (
BaseType
is not null)
676
return
BaseType
.GetAliasedProperty(directive);
721
return (
BaseType
is not null) ?
BaseType
.GetCollectionKind() : XamlCollectionKind.None;
760
if (
BaseType
is not null)
762
return
BaseType
.ContentProperty;
784
if (
BaseType
is not null)
786
IList<XamlType> baseWrappers =
BaseType
.ContentWrappers;
816
if (
BaseType
is not null)
818
return
BaseType
.DeferringLoader;
900
if (
BaseType
is not null)
902
return
BaseType
.IsWhitespaceSignificantCollection;
923
else if (UnderlyingType is null &&
BaseType
is not null)
925
return
BaseType
.KeyType;
953
else if (
BaseType
is not null)
955
return
BaseType
.ItemType;
972
if (
BaseType
is not null)
974
return
BaseType
.MarkupExtensionReturnType;
983
return (
BaseType
is not null) ?
BaseType
.GetAllAttachableMembers() : null;
993
return (
BaseType
is not null) ?
BaseType
.GetAllMembers() : null;
1028
if (
BaseType
is not null)
1030
return skipReadOnlyCheck ?
BaseType
.LookupMember(name, true) :
BaseType
.GetMember(name);
1061
return (
BaseType
is not null) ?
BaseType
.GetAttachableMember(name) : null;
1134
if (
BaseType
is not null)
1136
return
BaseType
.IsAmbient;
1158
if (
BaseType
is not null)
1160
XamlValueConverter<TypeConverter> result =
BaseType
.TypeConverter;
1202
if (
BaseType
is not null)
1204
XamlValueConverter<ValueSerializer> result =
BaseType
.ValueSerializer;
1242
if (
BaseType
is not null)
1244
return
BaseType
.TrimSurroundingWhitespace;
1260
if (
BaseType
is not null)
1262
return
BaseType
.IsUsableDuringInitialization;
1282
if (
BaseType
is not null)
1284
return
BaseType
.SetMarkupExtensionHandler;
1304
if (
BaseType
is not null)
1306
return
BaseType
.SetTypeConverterHandler;
1699
XamlType baseType =
BaseType
;