2 writes to OwnerType
PresentationFramework (2)
System\Windows\Markup\BamlMapTable.cs (2)
795bamlAttributeInfoRecord.OwnerType = 803bamlAttributeInfoRecord.OwnerType = GetTypeFromTypeInfo(typeInfo);
15 references to OwnerType
PresentationFramework (15)
System\Windows\Markup\BamlMapTable.cs (9)
375object key = GetAttributeInfoKey(info.OwnerType.FullName, info.Name); 642Type ownerType = record.OwnerType; 791if (bamlAttributeInfoRecord.OwnerType == null) 808return bamlAttributeInfoRecord.OwnerType; 818if (attributeInfo != null && attributeInfo.OwnerType != null) 821XamlTypeMapper.UpdateClrPropertyInfo(attributeInfo.OwnerType, attributeInfo); 834propName = $"{attributeInfo.OwnerType.FullName}.{attributeInfo.Name}"; 923if (null != bamlAttributeInfoRecord.OwnerType) 927bamlAttributeInfoRecord.OwnerType);
System\Windows\Markup\BamlReader.cs (3)
985if (attrInfo.OwnerType == null) 993attrInfo.PropInfo = attrInfo.OwnerType.GetProperty(attrInfo.Name, 1009PropertyInfo[] infos = attrInfo.OwnerType.GetProperties(
System\Windows\Markup\BamlRecordReader.cs (2)
3527attribInfo.OwnerType.FullName, 5154return $"{attribInfo.OwnerType.Name}.{attribInfo.Name}";
System\Windows\Markup\XamlTypeMapper.cs (1)
864Type propertyOwnerType = attributeInfo.OwnerType;