Interface IUpdateableOptions<TOptions>
Used to register TOptions instances that can be updated via IOptionsUpdater<TOptions>.
public interface IUpdateableOptions<TOptions>
Type Parameters
TOptionsThe options type being changed.
Properties
Name
The name of the option instance.
string? Name { get; }
Property Value
Methods
UpdateValue(TOptions)
Updates the options value.
void UpdateValue(TOptions value)
Parameters
valueTOptionsThe new options value.