2 writes to _propertyInfo
ReachFramework (2)
Serialization\Manager\ReachSerializableProperties.cs (2)
369this._propertyInfo = propertyCache; 389_propertyInfo = propertyCache;
18 references to _propertyInfo
ReachFramework (18)
Serialization\Manager\ReachSerializableProperties.cs (18)
507if (_propertyInfo != null) 509info = (PropertyInfo)_propertyInfo.PropertyInfo; 546if (_propertyInfo != null) 548visibility = _propertyInfo.Visibility; 567if (_propertyInfo != null) 569type = _propertyInfo.SerializerTypeForProperty; 588if (_propertyInfo != null) 590converter = _propertyInfo.TypeConverterForProperty; 608if (_propertyInfo != null) 610defValAttr = _propertyInfo.DefaultValueAttr; 628if (_propertyInfo != null) 630designerSerFlagAttr = _propertyInfo.DesignerSerializationOptionsAttr; 649if ( (_propertyInfo != null) && 650(((PropertyInfo)_propertyInfo.PropertyInfo) != null) ) 652isReadOnly = !((PropertyInfo)_propertyInfo.PropertyInfo).CanWrite; 668return _propertyInfo.PropertyValue; 673_propertyInfo.PropertyValue = value; 687return _propertyInfo;