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