1 write to PropertyInfo
ReachFramework (1)
Serialization\Manager\ReachSerializationCacheItems.cs (1)
452this.PropertyInfo = memberInfo as PropertyInfo;
13 references to PropertyInfo
ReachFramework (13)
Serialization\Manager\MetroSerializationManager.cs (4)
577TypePropertyCache serializablePropertyCache = new TypePropertyCache(propertyCache.PropertyInfo, 1029bool isReadOnly = !propertyCache.PropertyInfo.CanWrite; 1039propertyCache.PropertyValue = propertyCache.PropertyInfo.GetValue(serializableObject, null); 1048propertyCache.PropertyValue = propertyCache.PropertyInfo.GetValue(serializableObject, null);
Serialization\Manager\ReachSerializableProperties.cs (4)
239propertyContext.Name = propertyContext.TypePropertyCache.PropertyInfo.Name; 509info = (PropertyInfo)_propertyInfo.PropertyInfo; 650(((PropertyInfo)_propertyInfo.PropertyInfo) != null) ) 652isReadOnly = !((PropertyInfo)_propertyInfo.PropertyInfo).CanWrite;
Serialization\Manager\XpsSerializationManager.cs (5)
740((dependencyProperty.PropertyInfo != null) || 743String name = (dependencyProperty.PropertyInfo != null) ? 744dependencyProperty.PropertyInfo.Name : 794property.PropertyInfo != null) 796String name = property.PropertyInfo.Name;