ConfigEntry<T> Class
Definition
Section titled “Definition”Provides access to a single setting inside of a ConfigFile.
public sealed class ConfigEntry<T> : ConfigEntryBase
Type Parameters
Section titled “Type Parameters”T
Type of the setting.
Inheritance object → ConfigEntryBase
Properties
Section titled “Properties”Value of this setting.
public T Value { get; set; }
BoxedValue
Section titled “BoxedValue”Get or set the value of the setting.
public override object BoxedValue { get; set; }
Events
Section titled “Events”SettingChanged
Section titled “SettingChanged”Fired when the setting is changed. Does not detect changes made outside from this object.
public event EventHandler SettingChanged