Class ConfigOptionEventArgs<T>
Interface for event arguments for a OptionItem.
public abstract class ConfigOptionEventArgs<T> : OptionEventArgs
Type Parameters
T
- Inheritance
-
ConfigOptionEventArgs<T>
- Derived
- Inherited Members
- Extension Methods
Constructors
ConfigOptionEventArgs(string, T)
Instantiates a new ConfigOptionEventArgs<T> for handling an event from a OptionItem.
public ConfigOptionEventArgs(string id, T value)
Parameters
id
string- The internal ID of the option.
value
T- The new value of the option.
Properties
Value
The typed Value of the OptionItem this event corresponds to.
public T Value { get; }
Property Value
- T