1 write to PropertyInfo
ReachFramework (1)
Serialization\Manager\ReachSerializationCacheItems.cs (1)
453this.PropertyInfo = memberInfo as PropertyInfo;
13 references to PropertyInfo
ReachFramework (13)
Serialization\Manager\MetroSerializationManager.cs (4)
578TypePropertyCache serializablePropertyCache = new TypePropertyCache(propertyCache.PropertyInfo, 1028bool isReadOnly = !propertyCache.PropertyInfo.CanWrite; 1038propertyCache.PropertyValue = propertyCache.PropertyInfo.GetValue(serializableObject, null); 1047propertyCache.PropertyValue = propertyCache.PropertyInfo.GetValue(serializableObject, null);
Serialization\Manager\ReachSerializableProperties.cs (4)
240propertyContext.Name = propertyContext.TypePropertyCache.PropertyInfo.Name; 510info = (PropertyInfo)_propertyInfo.PropertyInfo; 651(((PropertyInfo)_propertyInfo.PropertyInfo) != null) ) 653isReadOnly = !((PropertyInfo)_propertyInfo.PropertyInfo).CanWrite;
Serialization\Manager\XpsSerializationManager.cs (5)
751((dependencyProperty.PropertyInfo != null) || 754String name = (dependencyProperty.PropertyInfo != null) ? 755dependencyProperty.PropertyInfo.Name : 805property.PropertyInfo != null) 807String name = property.PropertyInfo.Name;