SettingChangingEventHandler Delegate
.NET Framework (current version)
Represents the method that will handle the SettingChanging event.
Assembly: System (in System.dll)
public delegate void SettingChangingEventHandler( Object^ sender, SettingChangingEventArgs^ e )
Parameters
- sender
-
Type:
System::Object^
The source of the event, typically an application settings wrapper class derived from the ApplicationSettingsBase class.
- e
-
Type:
System.Configuration::SettingChangingEventArgs^
A SettingChangingEventArgs containing the data for the event.
The SettingChanging event occurs before the value of an application settings property is changed, typically through a call to the Item method. SettingChanging can be canceled through the SettingChangingEventArgs event data class.
.NET Framework
Available since 2.0
Available since 2.0
Show: