7 writes to SerializeAs
System.Configuration.ConfigurationManager (7)
System\Configuration\ApplicationSettingsBase.cs (4)
498
settingsProperty.
SerializeAs
= ((SettingsSerializeAsAttribute)attribute).SerializeAs;
522
settingsProperty.
SerializeAs
= SettingsSerializeAs.String;
527
settingsProperty.
SerializeAs
= SettingsSerializeAs.Xml;
636
_init.
SerializeAs
= ((SettingsSerializeAsAttribute)attr).SerializeAs;
System\Configuration\SettingsProperty.cs (3)
48
SerializeAs
= serializeAs;
57
SerializeAs
= serializeAs;
69
SerializeAs
= propertyToCopy.SerializeAs;
8 references to SerializeAs
System.Configuration.ConfigurationManager (8)
System\Configuration\LocalFileSettingsProvider.cs (3)
165
StoredSetting ss = new StoredSetting(setting.
SerializeAs
, SerializeToXmlElement(setting, value));
444
if (serializedValue == null && setting.
SerializeAs
== SettingsSerializeAs.Binary)
461
if (setting.
SerializeAs
== SettingsSerializeAs.String)
System\Configuration\SettingsProperty.cs (1)
69
SerializeAs = propertyToCopy.
SerializeAs
;
System\Configuration\SettingsPropertyValue.cs (4)
90
value = GetObjectFromString(Property.PropertyType, Property.
SerializeAs
, (string)SerializedValue);
141
value = GetObjectFromString(Property.PropertyType, Property.
SerializeAs
, (string)Property.DefaultValue);
223
if (Property.
SerializeAs
!= SettingsSerializeAs.Binary)
226
return ConvertObjectToString(_value, Property.PropertyType, Property.
SerializeAs
, Property.ThrowOnErrorSerializing);