SettingChangingEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the method that will handle the SettingChanging event.
public delegate void SettingChangingEventHandler(System::Object ^ sender, SettingChangingEventArgs ^ e);
public delegate void SettingChangingEventHandler(object sender, SettingChangingEventArgs e);
type SettingChangingEventHandler = delegate of obj * SettingChangingEventArgs -> unit
Public Delegate Sub SettingChangingEventHandler(sender As Object, e As SettingChangingEventArgs)
Parameters
- sender
- Object
The source of the event, typically an application settings wrapper class derived from the ApplicationSettingsBase class.
A SettingChangingEventArgs containing the data for the event.
Remarks
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.
Extension Methods
GetMethodInfo(Delegate) |
Gets an object that represents the method represented by the specified delegate. |