Class SettingChangedEventArgs
- Namespace
- WindowSill.API
- Assembly
- WindowSill.API.dll
Represents the event arguments for the SettingChanged event.
public sealed class SettingChangedEventArgs : EventArgs
- Inheritance
-
SettingChangedEventArgs
- Inherited Members
- Extension Methods
Constructors
SettingChangedEventArgs(string, object?)
Initializes a new instance of the SettingChangedEventArgs class.
public SettingChangedEventArgs(string settingName, object? newValue)
Parameters
settingNamestringIndicates the name of the setting that changed.
newValueobjectIndicates the new value of the setting.
Properties
NewValue
Gets the new value of the setting that changed.
public object? NewValue { get; }
Property Value
SettingName
Gets the name of the setting that changed.
public string SettingName { get; }