11 instantiations of SettingsPropertyValueCollection
System (5)
sys\system\configuration\LocalFileSettingsProvider.cs (2)
92
SettingsPropertyValueCollection values = new
SettingsPropertyValueCollection
();
394
SettingsPropertyValueCollection values = new
SettingsPropertyValueCollection
();
sys\system\configuration\SettingsBase.cs (2)
21
_PropertyValues = new
SettingsPropertyValueCollection
();
120
SettingsPropertyValueCollection ppcv = new
SettingsPropertyValueCollection
();
sys\system\configuration\SettingsPropertyValueCollection.cs (1)
119
return new
SettingsPropertyValueCollection
(_Indices, _Values);
System.Web (1)
Profile\SqlProfileProvider.cs (1)
119
SettingsPropertyValueCollection svc = new
SettingsPropertyValueCollection
();
System.Web.Extensions (5)
ClientServices\Providers\ClientSettingsProvider.cs (5)
50
private SettingsPropertyValueCollection _PropertyValues = new
SettingsPropertyValueCollection
();
218
return new
SettingsPropertyValueCollection
();
227
_PropertyValues = new
SettingsPropertyValueCollection
();
247
_PropertyValues = new
SettingsPropertyValueCollection
();
312
_PropertyValues = new
SettingsPropertyValueCollection
();
28 references to SettingsPropertyValueCollection
System (14)
sys\system\configuration\ApplicationSettingsBase.cs (1)
153
public override
SettingsPropertyValueCollection
PropertyValues {
sys\system\configuration\LocalFileSettingsProvider.cs (7)
91
public override
SettingsPropertyValueCollection
GetPropertyValues(SettingsContext context, SettingsPropertyCollection properties) {
92
SettingsPropertyValueCollection
values = new SettingsPropertyValueCollection();
167
public override void SetPropertyValues(SettingsContext context,
SettingsPropertyValueCollection
values) {
294
SettingsPropertyValueCollection
values = GetSettingValuesFromFile(prevConfig, GetSectionName(context), true, properties);
393
private
SettingsPropertyValueCollection
GetSettingValuesFromFile(string configFileName, string sectionName, bool userScoped, SettingsPropertyCollection properties) {
394
SettingsPropertyValueCollection
values = new SettingsPropertyValueCollection();
520
SettingsPropertyValueCollection
values = GetSettingValuesFromFile(prevConfig, GetSectionName(context), true, upgradeProperties);
sys\system\configuration\SettingsBase.cs (4)
120
SettingsPropertyValueCollection
ppcv = new SettingsPropertyValueCollection();
136
virtual public
SettingsPropertyValueCollection
PropertyValues { get { return _PropertyValues; } }
153
SettingsPropertyValueCollection
ppcv = provider.GetPropertyValues(Context, ppc);
171
private
SettingsPropertyValueCollection
_PropertyValues = null;
sys\system\configuration\SettingsProvider.cs (2)
18
public abstract
SettingsPropertyValueCollection
GetPropertyValues(SettingsContext context, SettingsPropertyCollection collection);
19
public abstract void SetPropertyValues(SettingsContext context,
SettingsPropertyValueCollection
collection);
System.Web (6)
Profile\ProfileModule.cs (2)
154
internal static void ParseDataFromDB(string[] names, string values, byte[] buf,
SettingsPropertyValueCollection
properties)
194
internal static void PrepareDataForSaving(ref string allNames, ref string allValues, ref byte[] buf, bool binarySupported,
SettingsPropertyValueCollection
properties, bool userIsAuthenticated)
Profile\SqlProfileProvider.cs (4)
117
public override
SettingsPropertyValueCollection
GetPropertyValues(SettingsContext sc, SettingsPropertyCollection properties)
119
SettingsPropertyValueCollection
svc = new SettingsPropertyValueCollection();
143
private void GetPropertyValuesFromDatabase(string userName,
SettingsPropertyValueCollection
svc) {
205
public override void SetPropertyValues(SettingsContext sc,
SettingsPropertyValueCollection
properties)
System.Web.Extensions (8)
ClientServices\Providers\ClientSettingsProvider.cs (8)
50
private
SettingsPropertyValueCollection
_PropertyValues = new SettingsPropertyValueCollection();
216
public override
SettingsPropertyValueCollection
GetPropertyValues(SettingsContext context, SettingsPropertyCollection propertyCollection) {
275
public override void SetPropertyValues(SettingsContext context,
SettingsPropertyValueCollection
propertyValueCollection) {
283
private void SetPropertyValuesCore(
SettingsPropertyValueCollection
values, bool raiseEvent) {
394
static private void StoreKnownTypes(
SettingsPropertyValueCollection
propertyValueCollection)
586
private Collection<string> SetPropertyValuesWeb(
SettingsPropertyValueCollection
values, bool cacheIsMoreFresh)
616
private Collection<string> SetPropertyValuesWebCore(
SettingsPropertyValueCollection
values, bool cacheIsMoreFresh)
748
private void SetPropertyValuesSQL(
SettingsPropertyValueCollection
values, bool updateSaveTime)