2 writes to OwnerType
PresentationFramework (2)
System\Windows\Markup\BamlMapTable.cs (2)
787
bamlAttributeInfoRecord.
OwnerType
= GetKnownTypeFromId(bamlAttributeInfoRecord.OwnerTypeId);
792
bamlAttributeInfoRecord.
OwnerType
= GetTypeFromTypeInfo(typeInfo);
15 references to OwnerType
PresentationFramework (15)
System\Windows\Markup\BamlMapTable.cs (9)
374
object key = GetAttributeInfoKey(info.
OwnerType
.FullName, info.Name);
638
Type ownerType = record.
OwnerType
;
783
if (bamlAttributeInfoRecord.
OwnerType
== null)
796
return bamlAttributeInfoRecord.
OwnerType
;
806
if (attributeInfo != null && attributeInfo.
OwnerType
!= null)
809
XamlTypeMapper.UpdateClrPropertyInfo(attributeInfo.
OwnerType
, attributeInfo);
822
propName = $"{attributeInfo.
OwnerType
.FullName}.{attributeInfo.Name}";
911
if (null != bamlAttributeInfoRecord.
OwnerType
)
915
bamlAttributeInfoRecord.
OwnerType
);
System\Windows\Markup\BamlReader.cs (3)
988
if (attrInfo.
OwnerType
== null)
996
attrInfo.PropInfo = attrInfo.
OwnerType
.GetProperty(attrInfo.Name,
1012
PropertyInfo[] infos = attrInfo.
OwnerType
.GetProperties(
System\Windows\Markup\BamlRecordReader.cs (2)
3518
attribInfo.
OwnerType
.FullName,
5141
return $"{attribInfo.
OwnerType
.Name}.{attribInfo.Name}";
System\Windows\Markup\XamlTypeMapper.cs (1)
855
Type propertyOwnerType = attributeInfo.
OwnerType
;