SettingsProvider.GetPropertyValues Method

Definition

Returns the collection of settings property values for the specified application instance and settings property group.

public:
 abstract System::Configuration::SettingsPropertyValueCollection ^ GetPropertyValues(System::Configuration::SettingsContext ^ context, System::Configuration::SettingsPropertyCollection ^ collection);
public abstract System.Configuration.SettingsPropertyValueCollection GetPropertyValues (System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection collection);
abstract member GetPropertyValues : System.Configuration.SettingsContext * System.Configuration.SettingsPropertyCollection -> System.Configuration.SettingsPropertyValueCollection
Public MustOverride Function GetPropertyValues (context As SettingsContext, collection As SettingsPropertyCollection) As SettingsPropertyValueCollection

Parameters

context
SettingsContext

A SettingsContext describing the current application use.

collection
SettingsPropertyCollection

A SettingsPropertyCollection containing the settings property group whose values are to be retrieved.

Returns

A SettingsPropertyValueCollection containing the values for the specified settings property group.

Remarks

The GetPropertyValues method must be implemented to handle special settings, those marked with SpecialSettingAttribute, as well as reconcile application and user settings.

Applies to

See also