Class ConfigEntry<T>
Provides access to a single setting inside of a ConfigFile.
Namespace: BepInEx.Configuration
Assembly: BepInEx.dll
Syntax
public sealed class ConfigEntry<T> : ConfigEntryBase
Type Parameters
Name | Description |
---|---|
T |
Type of the setting. |
Properties
Get or set the value of the setting.
Declaration
public override object BoxedValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Overrides
Value of this setting.
Declaration
public T Value { get; set; }
Property Value
Type | Description |
---|---|
T |
Events
SettingChanged
Fired when the setting is changed. Does not detect changes made outside from this object.
Declaration
public event EventHandler SettingChanged
Event Type
Type | Description |
---|---|
System.EventHandler |