mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-16 06:29:29 +00:00
14 lines
357 B
C#
14 lines
357 B
C#
using Microsoft.Extensions.Options;
|
|
|
|
namespace System.Configuration
|
|
{
|
|
public interface IUpdateableOptions<out T> : IOptions<T>
|
|
where T : class
|
|
{
|
|
/// <summary>
|
|
/// Updates the configuration with the current value stored in <see cref="IOptions{TOptions}.Value"/>.
|
|
/// </summary>
|
|
void UpdateOption();
|
|
}
|
|
}
|