1 write to PropertyInfo
ReachFramework (1)
Serialization\Manager\ReachSerializationCacheItems.cs (1)
464this.PropertyInfo = memberInfo as PropertyInfo;
13 references to PropertyInfo
ReachFramework (13)
Serialization\Manager\MetroSerializationManager.cs (4)
587TypePropertyCache serializablePropertyCache = new TypePropertyCache(propertyCache.PropertyInfo, 1037bool isReadOnly = !propertyCache.PropertyInfo.CanWrite; 1047propertyCache.PropertyValue = propertyCache.PropertyInfo.GetValue(serializableObject, null); 1056propertyCache.PropertyValue = propertyCache.PropertyInfo.GetValue(serializableObject, null);
Serialization\Manager\ReachSerializableProperties.cs (4)
250propertyContext.Name = propertyContext.TypePropertyCache.PropertyInfo.Name; 520info = (PropertyInfo)_propertyInfo.PropertyInfo; 661(((PropertyInfo)_propertyInfo.PropertyInfo) != null) ) 663isReadOnly = !((PropertyInfo)_propertyInfo.PropertyInfo).CanWrite;
Serialization\Manager\XpsSerializationManager.cs (5)
761((dependencyProperty.PropertyInfo != null) || 764String name = (dependencyProperty.PropertyInfo != null) ? 765dependencyProperty.PropertyInfo.Name : 815property.PropertyInfo != null) 817String name = property.PropertyInfo.Name;