2 writes to OwnerType
PresentationFramework (2)
System\Windows\Markup\BamlMapTable.cs (2)
795
bamlAttributeInfoRecord.
OwnerType
=
803
bamlAttributeInfoRecord.
OwnerType
= GetTypeFromTypeInfo(typeInfo);
15 references to OwnerType
PresentationFramework (15)
System\Windows\Markup\BamlMapTable.cs (9)
375
object key = GetAttributeInfoKey(info.
OwnerType
.FullName, info.Name);
642
Type ownerType = record.
OwnerType
;
791
if (bamlAttributeInfoRecord.
OwnerType
== null)
808
return bamlAttributeInfoRecord.
OwnerType
;
818
if (attributeInfo != null && attributeInfo.
OwnerType
!= null)
821
XamlTypeMapper.UpdateClrPropertyInfo(attributeInfo.
OwnerType
, attributeInfo);
834
propName = $"{attributeInfo.
OwnerType
.FullName}.{attributeInfo.Name}";
923
if (null != bamlAttributeInfoRecord.
OwnerType
)
927
bamlAttributeInfoRecord.
OwnerType
);
System\Windows\Markup\BamlReader.cs (3)
985
if (attrInfo.
OwnerType
== null)
993
attrInfo.PropInfo = attrInfo.
OwnerType
.GetProperty(attrInfo.Name,
1009
PropertyInfo[] infos = attrInfo.
OwnerType
.GetProperties(
System\Windows\Markup\BamlRecordReader.cs (2)
3527
attribInfo.
OwnerType
.FullName,
5154
return $"{attribInfo.
OwnerType
.Name}.{attribInfo.Name}";
System\Windows\Markup\XamlTypeMapper.cs (1)
864
Type propertyOwnerType = attributeInfo.
OwnerType
;