2 writes to OwnerType
PresentationFramework (2)
System\Windows\Markup\BamlMapTable.cs (2)
803
bamlAttributeInfoRecord.
OwnerType
=
811
bamlAttributeInfoRecord.
OwnerType
= GetTypeFromTypeInfo(typeInfo);
15 references to OwnerType
PresentationFramework (15)
System\Windows\Markup\BamlMapTable.cs (9)
383
object key = GetAttributeInfoKey(info.
OwnerType
.FullName, info.Name);
650
Type ownerType = record.
OwnerType
;
799
if (bamlAttributeInfoRecord.
OwnerType
== null)
816
return bamlAttributeInfoRecord.
OwnerType
;
826
if (attributeInfo != null && attributeInfo.
OwnerType
!= null)
829
XamlTypeMapper.UpdateClrPropertyInfo(attributeInfo.
OwnerType
, attributeInfo);
842
propName = $"{attributeInfo.
OwnerType
.FullName}.{attributeInfo.Name}";
931
if (null != bamlAttributeInfoRecord.
OwnerType
)
935
bamlAttributeInfoRecord.
OwnerType
);
System\Windows\Markup\BamlReader.cs (3)
995
if (attrInfo.
OwnerType
== null)
1003
attrInfo.PropInfo = attrInfo.
OwnerType
.GetProperty(attrInfo.Name,
1019
PropertyInfo[] infos = attrInfo.
OwnerType
.GetProperties(
System\Windows\Markup\BamlRecordReader.cs (2)
3536
attribInfo.
OwnerType
.FullName,
5163
return $"{attribInfo.
OwnerType
.Name}.{attribInfo.Name}";
System\Windows\Markup\XamlTypeMapper.cs (1)
866
Type propertyOwnerType = attributeInfo.
OwnerType
;