2 writes to OwnerType
PresentationFramework (2)
src\Framework\System\Windows\Markup\BamlMapTable.cs (2)
813
bamlAttributeInfoRecord.
OwnerType
=
821
bamlAttributeInfoRecord.
OwnerType
= GetTypeFromTypeInfo(typeInfo);
15 references to OwnerType
PresentationFramework (15)
src\Framework\System\Windows\Markup\BamlMapTable.cs (9)
393
object key = GetAttributeInfoKey(info.
OwnerType
.FullName, info.Name);
660
Type ownerType = record.
OwnerType
;
809
if (bamlAttributeInfoRecord.
OwnerType
== null)
826
return bamlAttributeInfoRecord.
OwnerType
;
836
if (attributeInfo != null && attributeInfo.
OwnerType
!= null)
839
XamlTypeMapper.UpdateClrPropertyInfo(attributeInfo.
OwnerType
, attributeInfo);
852
propName = attributeInfo.
OwnerType
.FullName + "." + attributeInfo.Name;
941
if (null != bamlAttributeInfoRecord.
OwnerType
)
945
bamlAttributeInfoRecord.
OwnerType
);
src\Framework\System\Windows\Markup\BamlReader.cs (3)
1007
if (attrInfo.
OwnerType
== null)
1015
attrInfo.PropInfo = attrInfo.
OwnerType
.GetProperty(attrInfo.Name,
1031
PropertyInfo[] infos = attrInfo.
OwnerType
.GetProperties(
src\Framework\System\Windows\Markup\BamlRecordReader.cs (2)
3572
attribInfo.
OwnerType
.FullName,
5222
return attribInfo.
OwnerType
.Name + "." + attribInfo.Name;
src\Framework\System\Windows\Markup\XamlTypeMapper.cs (1)
949
Type propertyOwnerType = attributeInfo.
OwnerType
;