2 writes to _propertyInfo
ReachFramework (2)
Serialization\Manager\ReachSerializableProperties.cs (2)
370
this.
_propertyInfo
= propertyCache;
390
_propertyInfo
= propertyCache;
18 references to _propertyInfo
ReachFramework (18)
Serialization\Manager\ReachSerializableProperties.cs (18)
508
if (
_propertyInfo
!= null)
510
info = (PropertyInfo)
_propertyInfo
.PropertyInfo;
547
if (
_propertyInfo
!= null)
549
visibility =
_propertyInfo
.Visibility;
568
if (
_propertyInfo
!= null)
570
type =
_propertyInfo
.SerializerTypeForProperty;
589
if (
_propertyInfo
!= null)
591
converter =
_propertyInfo
.TypeConverterForProperty;
609
if (
_propertyInfo
!= null)
611
defValAttr =
_propertyInfo
.DefaultValueAttr;
629
if (
_propertyInfo
!= null)
631
designerSerFlagAttr =
_propertyInfo
.DesignerSerializationOptionsAttr;
650
if ( (
_propertyInfo
!= null) &&
651
(((PropertyInfo)
_propertyInfo
.PropertyInfo) != null) )
653
isReadOnly = !((PropertyInfo)
_propertyInfo
.PropertyInfo).CanWrite;
669
return
_propertyInfo
.PropertyValue;
674
_propertyInfo
.PropertyValue = value;
688
return
_propertyInfo
;