Files
SystemExtensions/SystemExtensions.NetStandard.DependencyInjection/Configuration/IUpdateableOptions.cs
T
2021-07-10 10:59:27 +03:00

14 lines
368 B
C#

using Microsoft.Extensions.Options;
namespace System.Extensions.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();
}
}