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