SettingsProvider::SetPropertyValues Method (SettingsContext^, SettingsPropertyValueCollection^)
Sets the values of the specified group of property settings.
Assembly: System (in System.dll)
public: virtual void SetPropertyValues( SettingsContext^ context, SettingsPropertyValueCollection^ collection ) abstract
Parameters
- context
-
Type:
System.Configuration::SettingsContext^
A SettingsContext describing the current application usage.
- collection
-
Type:
System.Configuration::SettingsPropertyValueCollection^
A SettingsPropertyValueCollection representing the group of property settings to set.
ApplicationSettingsBase contains the Save method, which is called to persist the values of all of its settings properties. This method enumerates through all the settings providers associated with its settings properties, and calls the SetPropertyValues method for each SettingsProvider to perform the actual serialization operation.
The SetPropertyValues method should be implemented with security in mind:
Only fully trusted code should be allowed to update application settings. Partially trusted code should be allowed to update only user application settings. Untrusted code is not typically allowed to update application settings.
Usage quotas should be considered to guard against resource attacks by partially trusted applications.
Available since 2.0