SettingsLoadedEventHandler 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 SettingsLoaded event.
public delegate void SettingsLoadedEventHandler(System::Object ^ sender, SettingsLoadedEventArgs ^ e);
public delegate void SettingsLoadedEventHandler(object sender, SettingsLoadedEventArgs e);
type SettingsLoadedEventHandler = delegate of obj * SettingsLoadedEventArgs -> unit
Public Delegate Sub SettingsLoadedEventHandler(sender As Object, e As SettingsLoadedEventArgs)
Parameters
- sender
- Object
The source of the event, typically the settings class.
A SettingsLoadedEventArgs object that contains the event data.
Remarks
The SettingsLoaded event occurs when settings are retrieved from a provider. This event fires once for each provider.
Extension Methods
GetMethodInfo(Delegate) |
Gets an object that represents the method represented by the specified delegate. |