SettingsBase.Properties Property

Definition

Gets the collection of settings properties.

public:
 virtual property System::Configuration::SettingsPropertyCollection ^ Properties { System::Configuration::SettingsPropertyCollection ^ get(); };
public virtual System.Configuration.SettingsPropertyCollection Properties { get; }
member this.Properties : System.Configuration.SettingsPropertyCollection
Public Overridable ReadOnly Property Properties As SettingsPropertyCollection

Property Value

A SettingsPropertyCollection collection containing all the SettingsProperty objects.

Remarks

The get accessor of the Properties property returns the collection of SettingsProperty instances associated with the properties managed by the SettingsBase instance.

The SettingsBase class natively recognizes certain characteristics of a setting, such as its name, property type, settings provider, default value, and read-only status and a serialization preference. These characteristics are mirrored as properties in the SettingsProperty class. All other attributes of the SettingsProperty class are just passed through to its associated settings provider as a SettingsAttributeDictionary.

Applies to

See also