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