Skip to content

ConfigEntry<T> Class

Provides access to a single setting inside of a ConfigFile.

C#
public sealed class ConfigEntry<T> : ConfigEntryBase

T
Type of the setting.

Inheritance objectConfigEntryBase

Value of this setting.

C#
public T Value { get; set; }

Get or set the value of the setting.

C#
public override object BoxedValue { get; set; }

Fired when the setting is changed. Does not detect changes made outside from this object.

C#
public event EventHandler SettingChanged

EventHandler